From 05db80c950158f96de5553a91c6d183d099e84bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 11:23:16 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.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...v3.1.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-publish-base-image.yml | 2 +- .github/workflows/ci-test.yml | 20 +++++++++---------- .github/workflows/daily.yml | 4 ++-- .github/workflows/dep-summaries.yml | 8 ++++---- .github/workflows/developer-site-ci.yml | 2 +- .github/workflows/docker-publish.yml | 2 +- .github/workflows/hyperjump-comment.yml | 2 +- .github/workflows/hyperjump-labels.yml | 2 +- .../workflows/hyperjump-request-review.yml | 2 +- .github/workflows/jsonrpc-compat.yml | 2 +- .github/workflows/land-blocking.yml | 2 +- .github/workflows/post-land.yml | 2 +- .github/workflows/rustdoc.yml | 2 +- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/ci-publish-base-image.yml b/.github/workflows/ci-publish-base-image.yml index ecb188f80bf3..1e5aa72bfd35 100644 --- a/.github/workflows/ci-publish-base-image.yml +++ b/.github/workflows/ci-publish-base-image.yml @@ -19,7 +19,7 @@ jobs: TAG: github-1 DOCKERHUB_ORG: libra steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: build image run: docker build -f docker/ci/github/Dockerfile -t ${{ env.DOCKERHUB_ORG }}/build_environment:${{ env.TAG }} . - name: Sign in to dockerhub, install image signing cert. diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index f2bb34a2de99..9018ccb1a239 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -26,7 +26,7 @@ jobs: test-website-build: ${{ steps.website-changes.outputs.changes-found }} test-non-rust-lint: ${{ steps.non-rust-lint-changes.outputs.changes-found }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.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" @@ -70,7 +70,7 @@ jobs: matrix: target_os: [alpine, arch, centos, github] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/check-machine @@ -87,7 +87,7 @@ jobs: container: image: libra/build_environment:github-1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/check-machine @@ -115,7 +115,7 @@ jobs: volumes: - "/home/runner/work/diem/diem:/opt/git/diem" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/check-machine @@ -147,7 +147,7 @@ jobs: volumes: - "/home/runner/work/diem/diem:/opt/git/diem" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 #get all the history!!! @@ -185,7 +185,7 @@ jobs: FLAKY_TESTS_FILE: /tmp/failures MESSAGE_PAYLOAD_FILE: /tmp/message steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -253,7 +253,7 @@ jobs: volumes: - "/home/runner/work/diem/diem:/opt/git/diem" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/check-machine @@ -285,7 +285,7 @@ jobs: volumes: - "/home/runner/work/diem/diem:/opt/git/diem" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -308,7 +308,7 @@ jobs: volumes: - "/home/runner/work/diem/diem:/opt/git/diem" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: ./.github/actions/build-setup @@ -335,7 +335,7 @@ jobs: env: CRITERION_HOME: /tmp/benches steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - uses: actions/cache@v2 diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 4b4a4b264ec9..564bbfe3d2f1 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -21,7 +21,7 @@ jobs: env: MESSAGE_PAYLOAD_FILE: /tmp/message steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: ref: ${{ matrix.target-branch }} - uses: ./.github/actions/build-setup @@ -45,7 +45,7 @@ jobs: CODECOV_OUTPUT: codecov MESSAGE_PAYLOAD_FILE: /tmp/message steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - uses: ./.github/actions/build-setup - name: Configure AWS Credentials uses: aws-actions/configure-aws-credentials@v1 diff --git a/.github/workflows/dep-summaries.yml b/.github/workflows/dep-summaries.yml index d553241c4d96..d1304953f36b 100644 --- a/.github/workflows/dep-summaries.yml +++ b/.github/workflows/dep-summaries.yml @@ -26,7 +26,7 @@ jobs: dep-auditors-list: ${{ steps.dep-auditors.outputs.list }} steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 if: ${{ startsWith(github.event_name, 'pull_request') }} with: ref: ${{ github.event.pull_request.head.sha }} @@ -37,18 +37,18 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: checkout base ref - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 if: ${{ startsWith(github.event_name, 'pull_request') }} with: ref: ${{ steps.fetch-base-ref.outputs.ref }} path: libra-base - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 if: ${{ github.event_name == 'push' }} with: ref: ${{ github.event.after }} - name: checkout base ref - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 if: ${{ github.event_name == 'push' }} with: ref: ${{ github.event.before }} diff --git a/.github/workflows/developer-site-ci.yml b/.github/workflows/developer-site-ci.yml index 5402763a897b..2aacc223a54e 100644 --- a/.github/workflows/developer-site-ci.yml +++ b/.github/workflows/developer-site-ci.yml @@ -19,7 +19,7 @@ jobs: steps: # Checks-out the Diem website repository under $GITHUB_WORKSPACE, so job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 # Installs node and yarn - name: Use Node.js 12 uses: actions/setup-node@v2.1.4 diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index c40a53c9487d..b9b7c3867326 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -12,7 +12,7 @@ jobs: TAG: github-1 DOCKERHUB_ORG: libra steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: fetch-depth: 0 #get all the history!!! - id: changes diff --git a/.github/workflows/hyperjump-comment.yml b/.github/workflows/hyperjump-comment.yml index 82359c775f28..81632833b4b9 100644 --- a/.github/workflows/hyperjump-comment.yml +++ b/.github/workflows/hyperjump-comment.yml @@ -10,7 +10,7 @@ jobs: name: (hyperjump) comment steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: comment uses: diem/actions/hyperjump-comment@faa14430e68d54a269628f385e69a207e4e413d5 with: diff --git a/.github/workflows/hyperjump-labels.yml b/.github/workflows/hyperjump-labels.yml index 3bd647835081..6e9f0513c5ba 100644 --- a/.github/workflows/hyperjump-labels.yml +++ b/.github/workflows/hyperjump-labels.yml @@ -10,7 +10,7 @@ jobs: name: (hyperjump) labels steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: labels uses: diem/actions/hyperjump-labels@faa14430e68d54a269628f385e69a207e4e413d5 with: diff --git a/.github/workflows/hyperjump-request-review.yml b/.github/workflows/hyperjump-request-review.yml index 7dc2fe0b2462..ba6fdabc80f4 100644 --- a/.github/workflows/hyperjump-request-review.yml +++ b/.github/workflows/hyperjump-request-review.yml @@ -10,7 +10,7 @@ jobs: name: (hyperjump) request-review steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: request review uses: diem/actions/hyperjump-request-review@faa14430e68d54a269628f385e69a207e4e413d5 with: diff --git a/.github/workflows/jsonrpc-compat.yml b/.github/workflows/jsonrpc-compat.yml index acc25f5f5078..bc85bcf12b51 100644 --- a/.github/workflows/jsonrpc-compat.yml +++ b/.github/workflows/jsonrpc-compat.yml @@ -11,7 +11,7 @@ jobs: name: Warn PR author about compatibility requirements steps: - name: checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: ref: ${{ github.event.pull_request.head.sha }} - name: comment diff --git a/.github/workflows/land-blocking.yml b/.github/workflows/land-blocking.yml index c09e2ecf203a..7a3720acb9ea 100644 --- a/.github/workflows/land-blocking.yml +++ b/.github/workflows/land-blocking.yml @@ -15,7 +15,7 @@ jobs: # The additional time can cover the retries and wait. timeout-minutes: 60 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3.1.0 - name: Get PR number id: pr-num uses: actions/github-script@v3 diff --git a/.github/workflows/post-land.yml b/.github/workflows/post-land.yml index 7232bd78e4c5..001a1e8de4cd 100644 --- a/.github/workflows/post-land.yml +++ b/.github/workflows/post-land.yml @@ -13,7 +13,7 @@ jobs: # The pre-release suite run time varies 1~1.5 hr. timeout-minutes: 120 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3.1.0 - name: set_env id: set_env run: | diff --git a/.github/workflows/rustdoc.yml b/.github/workflows/rustdoc.yml index a1cf404bd02b..0beb7be026b7 100644 --- a/.github/workflows/rustdoc.yml +++ b/.github/workflows/rustdoc.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 - name: Install Rust toolchain uses: actions-rs/toolchain@v1