Skip to content

Commit a7a2cac

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 6cc0042 commit a7a2cac

22 files changed

Lines changed: 24 additions & 24 deletions

.github/workflows/bugCatcher.yml

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

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

.github/workflows/checkNextChangelog.yml

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo "number=$(echo "$PR_DATA" | jq -r .number)" >> "$GITHUB_OUTPUT"
4343
4444
- name: Checkout repository
45-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
45+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4646
with:
4747
# Use the commit SHA instead of the branch ref to prevent
4848
# 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
@@ -31,7 +31,7 @@ jobs:
3131
actions: read # Required for Claude to read CI results on PRs
3232
steps:
3333
- name: Checkout repository
34-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
with:
3636
fetch-depth: 1
3737

.github/workflows/concurrencyExecutionTests.yml

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

3333
steps:
3434
- name: Checkout PR or Manual Dispatch
35-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
with:
3737
ref: ${{ github.event.pull_request.head.ref || inputs.branch || github.ref_name }}
3838
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
@@ -14,7 +14,7 @@ jobs:
1414
labels: linux-ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
17+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1818
with:
1919
fetch-depth: 0 # Needed for coverage comparison
2020
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
@@ -16,7 +16,7 @@ jobs:
1616
name: Check DCO Sign-off
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
19+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020
with:
2121
fetch-depth: 0 # Fetch full history to check all commits
2222
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
@@ -33,7 +33,7 @@ jobs:
3333
run: git config --system core.longpaths true
3434

3535
- name: Checkout code
36-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
36+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737
with:
3838
ref: ${{ inputs.branch || github.ref }}
3939

.github/workflows/prCheck.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
distribution: 'adopt'
3131

3232
- name: Checkout
33-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
33+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3434
with:
3535
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
3636
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
@@ -79,7 +79,7 @@ jobs:
7979
run: git config --system core.longpaths true
8080

8181
- name: Checkout
82-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
82+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8383
with:
8484
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
8585
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
@@ -195,7 +195,7 @@ jobs:
195195
run: git config --system core.longpaths true
196196

197197
- name: Checkout
198-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
198+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
199199
with:
200200
ref: ${{ github.event.pull_request.head.ref || github.ref_name }}
201201
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
@@ -38,7 +38,7 @@ jobs:
3838
distribution: 'adopt'
3939

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

0 commit comments

Comments
 (0)