Skip to content

Commit 44063ec

Browse files
chore(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 7374f44 commit 44063ec

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/action-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
ARCH: ${{ matrix.config.arch }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- uses: actions-rust-lang/setup-rust-toolchain@v1
2525
with:
2626
cache-key: rust-cache-${{ matrix.config.os }}-${{ matrix.config.arch}}

.github/workflows/action-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: check
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: actions-rust-lang/setup-rust-toolchain@v1
1515
with:
1616
components: rustfmt, clippy

.github/workflows/action-docker-build-push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- imageName: examples/spin-outbound-redis
2424
context: images/spin-outbound-redis
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727
- name: Set RELEASE_VERSION ENV var
2828
run: echo "RELEASE_VERSION=$(echo -n ${GITHUB_REF} | cut -d '/' -f 3)" >> $GITHUB_ENV
2929
- name: lowercase the runner OS name

.github/workflows/action-node-installer.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
release_version: ${{ steps.set_version.outputs.RELEASE_VERSION }}
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424

2525
- name: Set RELEASE_VERSION env var
2626
id: set_version
@@ -118,7 +118,7 @@ jobs:
118118
packages: write
119119
runs-on: ubuntu-latest
120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v5
122122

123123
- uses: actions/download-artifact@v4
124124
with:

.github/workflows/action-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
env:
1010
ARCH: x86_64
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- uses: actions/download-artifact@v4
1414
- uses: azure/setup-kubectl@v4
1515
- uses: fermyon/actions/spin/setup@v1

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
needs: build
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

3232
- name: Set RELEASE_VERSION ENV var
3333
run: |

0 commit comments

Comments
 (0)