From c31c5c4a4f1173ffd951cf83d99a87df01ad1cc3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Apr 2023 23:43:48 +0000 Subject: [PATCH] Bump actions/checkout from 3.4.0 to 3.5.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.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/v3.4.0...v3.5.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .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 574975f..d0ad175 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.4.0 + - uses: actions/checkout@v3.5.2 with: persist-credentials: false diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4e680e..a7c6754 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: name: test on MSRV runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.4.0 + - uses: actions/checkout@v3.5.2 - uses: actions-rs/toolchain@v1.0.7 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.4.0 + - uses: actions/checkout@v3.5.2 # Because we use nightly features for building docs, # using --all-features will fail without nightly toolchain. - uses: actions-rs/toolchain@v1.0.7 @@ -35,7 +35,7 @@ jobs: name: build with no_std runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.4.0 + - uses: actions/checkout@v3.5.2 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable