Skip to content

Commit e74c594

Browse files
Bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [gradle/actions](https://github.com/gradle/actions) | `4` | `5` | | [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) | `6` | `7` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `7` | `8` | Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `gradle/actions` from 4 to 5 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](gradle/actions@v4...v5) Updates `stefanzweifel/git-auto-commit-action` from 6 to 7 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@v6...v7) Updates `peter-evans/create-pull-request` from 7 to 8 - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](peter-evans/create-pull-request@v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: gradle/actions dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: peter-evans/create-pull-request dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0052ac6 commit e74c594

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/gradle-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
11-
- uses: actions/setup-java@v4
10+
- uses: actions/checkout@v6
11+
- uses: actions/setup-java@v5
1212
with:
1313
java-version: '11'
1414
distribution: 'temurin'
1515

16-
- uses: gradle/actions/setup-gradle@v4
16+
- uses: gradle/actions/setup-gradle@v5
1717
with:
1818
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
1919

.github/workflows/gradle-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ jobs:
2525
git_commit_gpgsign: true
2626
git_config_global: true
2727

28-
- uses: actions/checkout@v5
29-
- uses: actions/setup-java@v4
28+
- uses: actions/checkout@v6
29+
- uses: actions/setup-java@v5
3030
with:
3131
java-version: '11'
3232
distribution: 'temurin'
3333

3434
- name: Setup Gradle
35-
uses: gradle/actions/setup-gradle@v4
35+
uses: gradle/actions/setup-gradle@v5
3636
with:
3737
develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }}
3838

3939
- name: Generate reference script with version
4040
run: ./gradlew promote -Pversion=${{ inputs.version }}
4141

4242
- name: Commit & push changes
43-
uses: stefanzweifel/git-auto-commit-action@v6
43+
uses: stefanzweifel/git-auto-commit-action@v7
4444
with:
4545
commit_author: bot-githubaction <bot-githubaction@gradle.com>
4646
commit_user_name: bot-githubaction

.github/workflows/gradle-send-update-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
git_commit_gpgsign: true
3737
git_config_global: true
3838

39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
ref: main # Include the changes commmited in the previous job
4242
token: ${{ secrets.GH_BOT_GITHUB_TOKEN }}
4343

44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545
with:
4646
repository: ${{ inputs.repository }}
4747
path: ${{ inputs.repository }}
@@ -59,7 +59,7 @@ jobs:
5959
# If there are no changes, this action will not create a pull request
6060
- name: Create or update pull request
6161
id: create-pr
62-
uses: peter-evans/create-pull-request@v7
62+
uses: peter-evans/create-pull-request@v8
6363
with:
6464
path: ${{ inputs.repository }}
6565
committer: Bot Githubaction <bot-githubaction@gradle.com>

0 commit comments

Comments
 (0)