Skip to content

Commit d0dbebd

Browse files
dependabot[bot]ModProg
authored andcommitted
Bump actions/checkout from 3 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d2f96a6 commit d0dbebd

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ jobs:
2020
- name: Install cargo-audit
2121
run: cargo install cargo-audit
2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Run Audit
2525
run: cargo audit -D warnings

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
rustup toolchain install nightly --profile minimal --component rustfmt --allow-downgrade
1515
rustup default nightly
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Run Rustfmt
1919
run:
2020
cargo fmt --check
@@ -36,6 +36,6 @@ jobs:
3636
- name: Install Taplo
3737
run: cargo install taplo-cli
3838
- name: Checkout
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Run Taplo
4141
run: taplo fmt --check

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
rustup toolchain install ${{ matrix.channel }} --profile minimal --component clippy --allow-downgrade
4242
rustup default ${{ matrix.channel }}
4343
- name: Checkout
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
- name: Run Clippy
4646
run:
4747
cargo clippy --all-targets --workspace ${{ matrix.features }} -- -D warnings

.github/workflows/publish.yml

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

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Test Publish
1515
run:
1616
cargo publish --dry-run

.github/workflows/spellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install cargo-spellcheck
2323
run: cargo install cargo-spellcheck --locked
2424
- name: Checkout
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
- name: Run Spellcheck
2727
run: cargo spellcheck check -m 1 2>/dev/null
2828
- name: Run Spellcheck on CHANGELOG.md

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
rustup toolchain install ${{ matrix.rust }} --profile minimal --allow-downgrade
4141
rustup default ${{ matrix.rust }}
4242
- name: Checkout
43-
uses: actions/checkout@v3
43+
uses: actions/checkout@v4
4444
- name: Build
4545
run:
4646
cargo build --workspace ${{ matrix.features }}
@@ -88,7 +88,7 @@ jobs:
8888
rustup toolchain install ${{ matrix.rust }} --target thumbv6m-none-eabi --profile minimal --allow-downgrade
8989
rustup default ${{ matrix.rust }}
9090
- name: Checkout
91-
uses: actions/checkout@v3
91+
uses: actions/checkout@v4
9292
- name: Build
9393
run:
9494
cargo build --target thumbv6m-none-eabi ${{ matrix.features }} -p ensure-no-std
@@ -116,7 +116,7 @@ jobs:
116116
run:
117117
rustup toolchain install nightly --profile minimal --allow-downgrade
118118
- name: Checkout
119-
uses: actions/checkout@v3
119+
uses: actions/checkout@v4
120120
- name: Build
121121
working-directory: test-crates/minimal-versions
122122
run: |

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
rustup toolchain install nightly --profile minimal --component miri,rust-src --allow-downgrade
2222
rustup default nightly
2323
- name: Checkout
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525
- name: Test
2626
run:
2727
cargo miri test --workspace ${{ matrix.features }} --all-targets --no-fail-fast

0 commit comments

Comments
 (0)