-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump actions/checkout from 3.5.3 to 4.1.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 4.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3.5.3...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
- Loading branch information
1 parent
b1bbad7
commit 83d9937
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ jobs: | |
name: test on MSRV | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.0 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
# When toolchain is not specified, it uses rust-toolchain, which is the MSRV | ||
|
@@ -20,7 +20,7 @@ jobs: | |
name: test on nightly | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.0 | ||
# Because we use nightly features for building docs, | ||
# using --all-features will fail without nightly toolchain. | ||
- uses: actions-rs/[email protected] | ||
|
@@ -35,7 +35,7 @@ jobs: | |
name: build with no_std | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions/checkout@v4.1.0 | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: stable | ||
|