From 52c80f8c6c9593875eb4dce5d01d6356520799c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Mar 2022 13:18:46 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3 (#903) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [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) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci-github-actions.yml | 2 +- .github/workflows/ci-go.yml | 8 ++++---- .github/workflows/ci-goreleaser.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-github-actions.yml b/.github/workflows/ci-github-actions.yml index 2ed2ec1ea1..6ffd6f059f 100644 --- a/.github/workflows/ci-github-actions.yml +++ b/.github/workflows/ci-github-actions.yml @@ -13,7 +13,7 @@ jobs: actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index cdc9d7956c..bfe4b36bb2 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -17,7 +17,7 @@ jobs: golangci-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" @@ -34,8 +34,8 @@ jobs: working-directory: terraform-provider-corner runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - uses: actions/checkout@v3 with: path: terraform-provider-corner repository: hashicorp/terraform-provider-corner @@ -58,7 +58,7 @@ jobs: matrix: go-version: [ '1.17', '1.16' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} diff --git a/.github/workflows/ci-goreleaser.yml b/.github/workflows/ci-goreleaser.yml index b363a67190..4a0ef21d34 100644 --- a/.github/workflows/ci-goreleaser.yml +++ b/.github/workflows/ci-goreleaser.yml @@ -13,7 +13,7 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3626db40d9..2b6675a088 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: goreleaser: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Required for release notes fetch-depth: 0