From ed942652e6c2a52ccbcd5a11b09dd3a232a73bc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Apr 2022 21:04:14 +0000 Subject: [PATCH] Bump actions/checkout from 2.4.0 to 3.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.0.1. - [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/v2.4.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-test.yml | 16 ++++++++-------- .github/workflows/daily.yml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 11dbcd0cfe..8aad082dec 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -14,7 +14,7 @@ jobs: any-changes-founds: ${{ steps.any-changes-found.outputs.changes-found }} test-rust: ${{ steps.rust-changes.outputs.changes-found }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: # This ensures that the tip of the PR is checked out instead of the merge between the base ref and the tip # On `push` this value will be empty and will "do-the-right-thing" @@ -49,7 +49,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.any-changes-founds == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -68,7 +68,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 #get all the history!!! @@ -88,7 +88,7 @@ jobs: needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -119,7 +119,7 @@ jobs: # needs: prepare # if: ${{ needs.prepare.outputs.test-rust == 'true' }} # steps: - # - uses: actions/checkout@v2.4.0 + # - uses: actions/checkout@v3.0.1 # with: # ref: ${{ github.event.pull_request.head.sha }} # - uses: ./.github/actions/build-setup @@ -142,7 +142,7 @@ jobs: # env: # CRITERION_HOME: /tmp/benches # steps: - # - uses: actions/checkout@v2.4.0 + # - uses: actions/checkout@v3.0.1 # with: # ref: ${{ github.event.pull_request.head.sha }} # - uses: actions/cache@v2.1.6 @@ -173,7 +173,7 @@ jobs: needs: - prepare steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ github.event.pull_request.head.sha }} - name: Use Node.js 14 @@ -211,7 +211,7 @@ jobs: needs: - prepare steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.0.1 - name: Set up Ruby 2.6 uses: actions/setup-ruby@v1 with: diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 5901e076e9..9fe2be28e3 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -10,7 +10,7 @@ jobs: env: AUDIT_SUMMARY_FILE: /tmp/summary steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup @@ -51,7 +51,7 @@ jobs: matrix: target-branch: [main] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.0.1 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup