Skip to content

Commit 1b7769c

Browse files
Bump actions/checkout from 4 to 6 (#277)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Craig Colegrove <34786857+giarc3@users.noreply.github.com>
1 parent bc2d163 commit 1b7769c

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/integration-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
runs-on: ubuntu-latest
1818
needs: get_ref
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121
- uses: actions/setup-java@v5
2222
with:
2323
distribution: "temurin"
2424
java-version: "21"
2525
- name: clone the tsp
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
repository: IronCoreLabs/tenant-security-proxy
2929
ref: ${{ needs.get_ref.outputs.tsp_ref }}

.github/workflows/sdk-ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# This should stay in sync with the `os_matrix` above
2525
runs-on: ["ubuntu-24.04", "ubuntu-24.04-arm", "macos-15-intel", "macos-14"]
2626
steps:
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828
- uses: actions/setup-java@v5
2929
with:
3030
distribution: "temurin"
@@ -51,7 +51,7 @@ jobs:
5151
# This should stay in sync with the `os_matrix` above
5252
runs-on: ["ubuntu-24.04", "ubuntu-24.04-arm", "macos-15-intel", "macos-14"]
5353
steps:
54-
- uses: actions/checkout@v5
54+
- uses: actions/checkout@v6
5555
- uses: actions/setup-java@v5
5656
with:
5757
distribution: "temurin"
@@ -79,7 +79,7 @@ jobs:
7979
# This should stay in sync with the `os_matrix` above and the `runs-on` from the other jobs in this file
8080
runs-on: ["ubuntu-24.04", "ubuntu-24.04-arm", "macos-15-intel", "macos-14"]
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v6
8383
- uses: actions/download-artifact@v6
8484
with:
8585
name: ${{ join(matrix.runs-on) }}-

.github/workflows/sdk-release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
needs: generate-cdylibs
2020
runs-on: ubuntu-24.04
2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- uses: actions/download-artifact@v6
2424
with:
2525
path: ${{ github.workspace }}/kotlin/src/main/resources/
@@ -55,7 +55,7 @@ jobs:
5555
needs: generate-cdylibs
5656
runs-on: ubuntu-24.04
5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959
- uses: actions/setup-java@v5
6060
with:
6161
distribution: "temurin"
@@ -95,7 +95,7 @@ jobs:
9595
needs: generate-cdylibs
9696
runs-on: ubuntu-24.04
9797
steps:
98-
- uses: actions/checkout@v5
98+
- uses: actions/checkout@v6
9999
- uses: actions/download-artifact@v6
100100
with:
101101
path: ${{ github.workspace }}/python/ironcore-alloy
@@ -133,7 +133,7 @@ jobs:
133133
needs: [kotlin-release, python-release, java-release, rust-release]
134134
runs-on: ubuntu-24.04
135135
steps:
136-
- uses: actions/checkout@v5
136+
- uses: actions/checkout@v6
137137
with:
138138
ref: ${{ github.event.release.tag_name }}
139139
- name: Mark GitHub release as not prerelease

0 commit comments

Comments
 (0)