From 4a4b0405f7bc639983c2ff3b1e8bcb40b8cfb7ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Dec 2024 12:01:54 -0300 Subject: [PATCH] Bump actions/checkout from 4.1.7 to 4.2.2 (#186) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.7...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/coverage.yaml | 2 +- .github/workflows/main.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index 8ef9ac6..fd37ae4 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.2 with: persist-credentials: false diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 41c24c3..fffdb26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: name: build on MSRV runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.2 - uses: dtolnay/rust-toolchain@1.65.0 # 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.1.7 + - uses: actions/checkout@v4.2.2 - 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@v4.1.7 + - uses: actions/checkout@v4.2.2 - uses: dtolnay/rust-toolchain@master with: toolchain: stable