Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#135)
Browse files Browse the repository at this point in the history
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]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 5, 2023
1 parent 74f8ade commit 499c672
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal --component llvm-tools-preview
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/features.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: taiki-e/install-action@cargo-hack
- name: Create Cargo.lock for caching
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
rustup toolchain install stable --no-self-update --profile minimal
rustup toolchain install nightly --no-self-update --profile minimal
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: cargo update -Zminimal-versions
run: cargo +nightly -Zminimal-versions update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
rustup toolchain install nightly --no-self-update --profile minimal
rustup override set 1.63
rustup default 1.63
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: cargo update -Zminimal-versions
run: cargo +nightly -Zminimal-versions update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/os-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install toolchain
run: |
rustup toolchain install stable --no-self-update --profile minimal
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Cargo.lock for caching
run: cargo update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: shellcheck
run: shellcheck *.sh
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal --component rustfmt,clippy
rustup override set ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Cargo.lock for caching
run: cargo update
Expand All @@ -56,7 +56,7 @@ jobs:
rustup toolchain install nightly --no-self-update --profile minimal
rustup override set nightly
rustup default nightly
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Cargo.lock for caching
run: cargo update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
rustup toolchain install ${{ matrix.toolchain }} --no-self-update --profile minimal
rustup override set ${{ matrix.toolchain }}
rustup default ${{ matrix.toolchain }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create Cargo.lock for caching
run: cargo update
Expand Down

0 comments on commit 499c672

Please sign in to comment.