From 4d5473109de3bcc91fd4924a1545ee0b8a2b011d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Dec 2022 14:05:28 +0000 Subject: [PATCH] Bump actions/checkout from 2.4.0 to 3.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.2.0. - [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.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-post-land.yml | 6 +++--- .github/workflows/ci-test.yml | 16 ++++++++-------- .github/workflows/daily.yml | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/ci-post-land.yml b/.github/workflows/ci-post-land.yml index 2eb21c5987..8990cfab39 100644 --- a/.github/workflows/ci-post-land.yml +++ b/.github/workflows/ci-post-land.yml @@ -25,7 +25,7 @@ jobs: rust-changes: ${{ steps.rust-changes.outputs.changes-found }} base-image-changes: ${{ steps.base-image-changes.outputs.changes-found }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 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" @@ -60,7 +60,7 @@ jobs: IMAGE_NAME: ${{ github.repository }}_build_environment IMAGE_TAG: ${{ needs.prepare.outputs.changes-target-branch }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 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" @@ -88,7 +88,7 @@ jobs: # - "${{github.workspace}}:/opt/git/diem" # steps: # - name: Checkout repository - # uses: actions/checkout@v2.4.0 + # uses: actions/checkout@v3.2.0 # - uses: ./.github/actions/build-setup # - uses: actions/cache@v2.1.6 # with: diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index c52fa3c09e..688f81b633 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -27,7 +27,7 @@ jobs: test-dev-setup: ${{ steps.dev-setup-sh-changes.outputs.changes-found }} test-non-rust-lint: ${{ steps.non-rust-lint-changes.outputs.changes-found }} steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 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" @@ -76,7 +76,7 @@ jobs: matrix: target_os: [github] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - name: build image with dev-setup.sh @@ -97,7 +97,7 @@ jobs: volumes: - "${{github.workspace}}:/opt/git/diem" steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -127,7 +127,7 @@ jobs: volumes: - "${{github.workspace}}:/opt/git/diem" steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 #get all the history!!! @@ -172,7 +172,7 @@ jobs: volumes: - "${{github.workspace}}:/opt/git/diem" steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -205,7 +205,7 @@ jobs: volumes: - "${{github.workspace}}:/opt/git/diem" steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -233,7 +233,7 @@ jobs: env: CRITERION_HOME: /tmp/benches steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: actions/cache@v2.1.6 @@ -269,7 +269,7 @@ jobs: needs: - prepare steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ github.event.pull_request.head.sha }} - name: Use Node.js 14 diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 87be9b1fb2..2f97b40b36 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -23,7 +23,7 @@ jobs: env: AUDIT_SUMMARY_FILE: /tmp/summary steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup @@ -68,7 +68,7 @@ jobs: matrix: target-branch: [main] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3.2.0 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup