From 30367a4b87c147fb4a5f049b94eedfdec8e0e910 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Apr 2022 14:13:55 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.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/v2...2541b1294d2704b0964813337f33b291d3f8596b) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/continuous-integration-workflow.yml | 8 ++++---- .github/workflows/dependency-check.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/operator-ui.yml | 6 +++--- .github/workflows/solidity.yml | 4 ++-- .../sync-develop-from-smartcontractkit-chainlink.yml | 2 +- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5c892ba..cd658b1 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index ed77db7..ab24f26 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -38,7 +38,7 @@ jobs: --health-retries 5 steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Set up Postgres user uses: docker://postgres with: @@ -98,7 +98,7 @@ jobs: EXPLORER_DOCKER_TAG: ${{ fromJSON('["latest", "develop"]')[github.ref == 'refs/heads/master'] }} # https://github.community/t/do-expressions-support-ternary-operators-to-change-their-returned-value/18114/4 steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # Login to dockerhub so that we don't get rate limited - name: Login to DockerHub uses: docker/login-action@v1 @@ -129,7 +129,7 @@ jobs: password: ${{ secrets.DOCKER_READONLY_PASSWORD }} steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Yarn cache uses: actions/cache@v2 env: @@ -154,7 +154,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 # Login to dockerhub so that we don't get rate limited diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index c2699a8..926dab4 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Set up Go uses: actions/setup-go@v2 diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 6cd090b..4b0f386 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -5,7 +5,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: golangci-lint uses: golangci/golangci-lint-action@v2 with: diff --git a/.github/workflows/operator-ui.yml b/.github/workflows/operator-ui.yml index c668b63..970fa07 100644 --- a/.github/workflows/operator-ui.yml +++ b/.github/workflows/operator-ui.yml @@ -10,7 +10,7 @@ jobs: with: node-version: '12' - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Cache dependencies uses: actions/cache@v2 env: @@ -38,7 +38,7 @@ jobs: with: node-version: '12' - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Cache dependencies uses: actions/cache@v2 env: @@ -66,7 +66,7 @@ jobs: with: node-version: '12' - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Cache dependencies uses: actions/cache@v2 env: diff --git a/.github/workflows/solidity.yml b/.github/workflows/solidity.yml index 9671362..bba1709 100644 --- a/.github/workflows/solidity.yml +++ b/.github/workflows/solidity.yml @@ -10,7 +10,7 @@ jobs: with: node-version: '12' - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Yarn cache uses: actions/cache@v2 env: @@ -38,7 +38,7 @@ jobs: with: node-version: '12' - name: Checkout the repo - uses: actions/checkout@v2 + uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b - name: Yarn cache uses: actions/cache@v2 env: diff --git a/.github/workflows/sync-develop-from-smartcontractkit-chainlink.yml b/.github/workflows/sync-develop-from-smartcontractkit-chainlink.yml index 8683629..a08c0d3 100644 --- a/.github/workflows/sync-develop-from-smartcontractkit-chainlink.yml +++ b/.github/workflows/sync-develop-from-smartcontractkit-chainlink.yml @@ -10,7 +10,7 @@ jobs: name: Sync runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b with: ref: develop if: env.GITHUB_REPOSITORY != 'smartcontractkit/plugin'