Skip to content

Commit 01b3f18

Browse files
Bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 166f829 commit 01b3f18

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
test:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@v7
3232
- name: Install toolchain
3333
run: |
3434
rustup toolchain install stable --no-self-update --profile minimal --component llvm-tools-preview

.github/workflows/features.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install toolchain
3232
run: |
3333
rustup toolchain install stable --no-self-update --profile minimal
34-
- uses: actions/checkout@v6
34+
- uses: actions/checkout@v7
3535

3636
- uses: taiki-e/install-action@cargo-hack
3737
- name: Create Cargo.lock for caching

.github/workflows/minimal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
rustup toolchain install stable --no-self-update --profile minimal
3434
rustup toolchain install nightly --no-self-update --profile minimal
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636

3737
- name: cargo update -Zminimal-versions
3838
run: cargo +nightly -Zminimal-versions update

.github/workflows/msrv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
rustup toolchain install nightly --no-self-update --profile minimal
3131
rustup override set 1.63
3232
rustup default 1.63
33-
- uses: actions/checkout@v6
33+
- uses: actions/checkout@v7
3434

3535
- name: cargo update -Zminimal-versions
3636
run: cargo +nightly -Zminimal-versions update

.github/workflows/os-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install toolchain
3333
run: |
3434
rustup toolchain install stable --no-self-update --profile minimal
35-
- uses: actions/checkout@v6
35+
- uses: actions/checkout@v7
3636

3737
- name: Create Cargo.lock for caching
3838
run: cargo update

.github/workflows/release-plz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v7
1919
with:
2020
fetch-depth: 0
2121
- name: Install Rust toolchain

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ jobs:
77
shellcheck:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v6
10+
- uses: actions/checkout@v7
1111
- name: shellcheck
1212
run: shellcheck *.sh

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal --component rustfmt,clippy
3535
rustup override set ${{ matrix.toolchain }}
3636
rustup default ${{ matrix.toolchain }}
37-
- uses: actions/checkout@v6
37+
- uses: actions/checkout@v7
3838

3939
- name: Create Cargo.lock for caching
4040
run: cargo update
@@ -56,7 +56,7 @@ jobs:
5656
rustup toolchain install nightly --no-self-update --profile minimal
5757
rustup override set nightly
5858
rustup default nightly
59-
- uses: actions/checkout@v6
59+
- uses: actions/checkout@v7
6060

6161
- name: Create Cargo.lock for caching
6262
run: cargo update

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal
3838
rustup override set ${{ matrix.toolchain }}
3939
rustup default ${{ matrix.toolchain }}
40-
- uses: actions/checkout@v6
40+
- uses: actions/checkout@v7
4141

4242
- name: Create Cargo.lock for caching
4343
run: cargo update

0 commit comments

Comments
 (0)