Skip to content

Commit 9a767b2

Browse files
[CORE-69]: Bump actions/checkout from 5 to 6 (#1072)
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 266f345 commit 9a767b2

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

.github/workflows/build-test-tag-and-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout sources
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
- name: Set up JDK
2222
uses: actions/setup-java@v5
2323
with:
@@ -46,7 +46,7 @@ jobs:
4646
ports: [ "5432:5432" ]
4747

4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
# Needed by sonar to get the git history for the branch the PR will be merged into.
5151
with:
5252
fetch-depth: 0
@@ -96,7 +96,7 @@ jobs:
9696
outputs:
9797
is-bump: ${{ steps.bumpcheck.outputs.is-bump }}
9898
steps:
99-
- uses: actions/checkout@v5
99+
- uses: actions/checkout@v6
100100
- name: Skip version bump merges
101101
id: bumpcheck
102102
uses: ./.github/actions/bump-skip

.github/workflows/publish-app-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
set -e
4747
4848
- name: Clone terra-helmfile
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
repository: broadinstitute/terra-helmfile
5252
token: ${{ secrets.BROADBOT_TOKEN }} # Has to be set at checkout AND later when pushing to work

.github/workflows/publish-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
id-token: 'write'
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- name: Set up JDK 17
2424
uses: actions/setup-java@v5
2525
with:

.github/workflows/publish-java-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
permissions:
99
id-token: write
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
ref: main
1414
- name: Set up JDK 17

.github/workflows/publish-pacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
is-bump: ${{ steps.bumpcheck.outputs.is-bump }}
2828
steps:
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
- name: Skip version bump merges
3131
id: bumpcheck
3232
uses: ./.github/actions/bump-skip
@@ -73,7 +73,7 @@ jobs:
7373
repo-version: ${{ steps.extract-branch.outputs.repo-version }}
7474

7575
steps:
76-
- uses: actions/checkout@v5
76+
- uses: actions/checkout@v6
7777

7878
- name: Extract branch
7979
id: extract-branch
@@ -108,7 +108,7 @@ jobs:
108108

109109
steps:
110110
- name: Checkout current code
111-
uses: actions/checkout@v5
111+
uses: actions/checkout@v6
112112
- name: Set up JDK
113113
uses: actions/setup-java@v5
114114
with:

.github/workflows/release-python-client.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
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333
with:
3434
fetch-depth: 0
3535

.github/workflows/submit-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
contents: write
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Set up JDK
1818
uses: actions/setup-java@v5
1919
with:

.github/workflows/tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
new-tag: ${{ steps.tag.outputs.new_tag }}
4646
steps:
4747
- name: Checkout current code
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
ref: ${{ inputs.ref }}
5151
token: ${{ secrets.BROADBOT_TOKEN }} # this allows the push to succeed later

0 commit comments

Comments
 (0)