Skip to content

Commit 7f47d61

Browse files
dependabot[bot]ModProg
authored andcommitted
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 0642661 commit 7f47d61

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/audit.yml

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

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- uses: taiki-e/install-action@v2
2525
with:
2626
tool: cargo-audit

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Install Rust nightly
2525
run: |
2626
rustup toolchain install nightly --profile minimal --component rustfmt --allow-downgrade
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
- uses: taiki-e/install-action@v2
4040
with:
4141
tool: taplo-cli

.github/workflows/lint.yml

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

5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
- name: Install Rust
6262
run: |
6363
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- name: Test Publish
2525
run: cargo publish --dry-run

.github/workflows/spellcheck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
- uses: taiki-e/install-action@v2
2525
with:
2626
tool: cargo-spellcheck
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040
- uses: taiki-e/install-action@v2
4141
with:
4242
tool: typos-cli

.github/workflows/test.yml

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

5555
steps:
5656
- name: Checkout
57-
uses: actions/checkout@v5
57+
uses: actions/checkout@v6
5858
- name: Install Rust
5959
run: |
6060
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
@@ -118,7 +118,7 @@ jobs:
118118

119119
steps:
120120
- name: Checkout
121-
uses: actions/checkout@v5
121+
uses: actions/checkout@v6
122122
- name: Install Rust
123123
run: |
124124
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
@@ -150,7 +150,7 @@ jobs:
150150

151151
steps:
152152
- name: Checkout
153-
uses: actions/checkout@v5
153+
uses: actions/checkout@v6
154154
- name: Install Rust
155155
run: |
156156
rustup toolchain install ${{ matrix.rust.version }} --profile minimal --allow-downgrade

.github/workflows/validate.yml

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

2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
- name: Install Rust
3232
run: |
3333
rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade

0 commit comments

Comments
 (0)