Skip to content

Commit 521d8cf

Browse files
dependabot[bot]rjzak
authored andcommitted
build(deps): bump actions/checkout from 5 to 6
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>
1 parent fdb911d commit 521d8cf

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/cargo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: readme
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v5
8+
- uses: actions/checkout@v6
99
- name: Setup Rust toolchain
1010
run: rustup show && rustup update
1111
- run: cargo install cargo-readme
@@ -15,5 +15,5 @@ jobs:
1515
name: deny
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: EmbarkStudios/cargo-deny-action@v1

.github/workflows/commisery.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Check-out the repo under $GITHUB_WORKSPACE
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535

3636
- name: Run Commisery
3737
uses: enarx/commisery-action@master

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Dependabot metadata
1111
id: dependabot-metadata
1212
uses: dependabot/fetch-metadata@v2
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Approve a PR if not already approved
1515
run: |
1616
gh pr checkout "$PR_URL" # sets the upstream metadata for `gh pr status`

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
rust:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- name: Setup Rust toolchain
99
run: rustup show
1010
- name: cargo fmt
@@ -16,7 +16,7 @@ jobs:
1616
# name: nix fmt
1717
# runs-on: ubuntu-latest
1818
# steps:
19-
# - uses: actions/checkout@v5
19+
# - uses: actions/checkout@v6
2020
# - uses: cachix/install-nix-action@v31
2121
# with:
2222
# extra_nix_config: |
@@ -31,7 +31,7 @@ jobs:
3131
# name: nix flake check
3232
# runs-on: ubuntu-latest
3333
# steps:
34-
# - uses: actions/checkout@v5
34+
# - uses: actions/checkout@v6
3535
# - uses: cachix/install-nix-action@v31
3636
# with:
3737
# extra_nix_config: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
native:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- name: Setup Rust toolchain
99
run: rustup show
1010
- name: cargo test
@@ -13,7 +13,7 @@ jobs:
1313
wasi:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Setup Rust toolchain
1818
run: rustup show
1919
# Put this back when Enarx is able to receive TCP configuation from the command line.

0 commit comments

Comments
 (0)