Skip to content

Commit 1420e5e

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8ecbfcd commit 1420e5e

21 files changed

Lines changed: 23 additions & 23 deletions

.github/workflows/bugCatcher.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
environment: azure-prod
1616
steps:
1717
- name: Checkout code
18-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919

2020
- name: Set up JDK 21
2121
uses: actions/setup-java@c1e323688fd81a25caa38c78aa6df2d33d3e20d9 # v4

.github/workflows/checkNextChangelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout base branch (main)
16-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
with:
1818
ref: ${{ github.event.pull_request.base.ref }}
1919
fetch-depth: 0

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
echo "number=$(echo "$PR_DATA" | jq -r .number)" >> "$GITHUB_OUTPUT"
4141
4242
- name: Checkout repository
43-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
43+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4444
with:
4545
# Use the commit SHA instead of the branch ref to prevent
4646
# the branch from being moved between the API call and checkout

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
actions: read # Required for Claude to read CI results on PRs
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
32+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
with:
3434
fetch-depth: 1
3535

.github/workflows/concurrencyExecutionTests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
steps:
3131
- name: Checkout PR or Manual Dispatch
32-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
32+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
with:
3434
ref: ${{ github.event.pull_request.head.ref || inputs.branch || github.ref_name }}
3535
repository: ${{ github.event.pull_request.head.repo.full_name || inputs.repository || github.repository }}

.github/workflows/coverageReport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1515
with:
1616
fetch-depth: 0 # Needed for coverage comparison
1717
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}

.github/workflows/dco-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Check DCO Sign-off
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
with:
1919
fetch-depth: 0 # Fetch full history to check all commits
2020
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/loggingTesting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: git config --system core.longpaths true
3131

3232
- name: Checkout code
33-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
33+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3434
with:
3535
ref: ${{ inputs.branch || github.ref }}
3636

.github/workflows/prCheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'adopt'
2828

2929
- name: Checkout
30-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
30+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131
with:
3232
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
3333
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
@@ -63,7 +63,7 @@ jobs:
6363
run: git config --system core.longpaths true
6464

6565
- name: Checkout
66-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
66+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6767
with:
6868
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
6969
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
@@ -166,7 +166,7 @@ jobs:
166166
run: git config --system core.longpaths true
167167

168168
- name: Checkout
169-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
169+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
170170
with:
171171
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
172172
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}

.github/workflows/prCheckJDK8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
distribution: 'adopt'
3636

3737
- name: Checkout code
38-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
38+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3939
with:
4040
ref: ${{ github.event.pull_request.head.ref || inputs.branch }}
4141
repository: ${{ github.event.pull_request.head.repo.full_name || inputs.repository }}

0 commit comments

Comments
 (0)