-
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
ac52400
commit c99870c
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: build on MSRV | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.0.0 | ||
- uses: actions/checkout@v4.1.0 | ||
- uses: dtolnay/[email protected] | ||
# Don't use --all-features because `frost` has a higher MSRV and it's non-default. | ||
# Also don't run tests because some dev-dependencies have higher MSRVs. | ||
|
@@ -16,7 +16,7 @@ jobs: | |
name: test on nightly | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4.0.0 | ||
- uses: actions/checkout@v4.1.0 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
# Update dependencies since we commit the lockfile | ||
- run: cargo update --verbose | ||
|
@@ -25,7 +25,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: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
|