Skip to content

Commit 04cdc9d

Browse files
Bump actions/checkout from 4 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0f65b22 commit 04cdc9d

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v7
3636

3737
# Install both the matrix JDK (test execution) and JDK 17 (compile +
3838
# Gradle daemon runtime). Order matters: setup-java sets JAVA_HOME
@@ -89,7 +89,7 @@ jobs:
8989
java: ['17', '21', '25']
9090
steps:
9191
- name: Checkout
92-
uses: actions/checkout@v4
92+
uses: actions/checkout@v7
9393

9494
- name: Set up JDKs (test=${{ matrix.java }}, compile/daemon=17)
9595
uses: actions/setup-java@v4

.github/workflows/pr-integration-on-demand.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
# Check out exactly the PR's HEAD commit so we test the proposed
144144
# change, not the merge ref.
145145
- name: Checkout PR head
146-
uses: actions/checkout@v4
146+
uses: actions/checkout@v7
147147
with:
148148
ref: ${{ needs.guard.outputs.head_sha }}
149149

.github/workflows/pr-matrix-on-demand.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
steps:
107107
# Check out exactly the PR's HEAD commit, not the merge ref.
108108
- name: Checkout PR head
109-
uses: actions/checkout@v4
109+
uses: actions/checkout@v7
110110
with:
111111
ref: ${{ needs.guard.outputs.head_sha }}
112112

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_KEY_PASSWORD }}
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v7
7979
with:
8080
# Build from the explicit commit when chained; else the launch commit.
8181
ref: ${{ inputs.ref || github.sha }}

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v7
3030

3131
# PRs only run on JDK 17 (the minimum target). Forward-compat
3232
# regressions on JDK 21/25 are caught post-merge by main.yml.

.github/workflows/tag-and-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
}
7272
7373
- name: Checkout code
74-
uses: actions/checkout@v4
74+
uses: actions/checkout@v7
7575
with:
7676
ref: ${{ inputs.ref }}
7777

@@ -112,7 +112,7 @@ jobs:
112112
sha: ${{ steps.resolve.outputs.sha }}
113113
steps:
114114
- name: Checkout code
115-
uses: actions/checkout@v4
115+
uses: actions/checkout@v7
116116
with:
117117
fetch-depth: 0
118118
ref: ${{ inputs.ref }}

0 commit comments

Comments
 (0)