From 49f923633ce758e0cce6ef511cb5be4aadb2e94b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 12:00:46 +0100 Subject: [PATCH] Bump actions/setup-go from 2 to 3 (#49) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2 to 3. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/setup-go 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 | 4 ++-- .github/workflows/ci-goreleaser.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-github-actions.yml b/.github/workflows/ci-github-actions.yml index 6ffd6f0..ba79046 100644 --- a/.github/workflows/ci-github-actions.yml +++ b/.github/workflows/ci-github-actions.yml @@ -17,7 +17,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - run: go install github.com/rhysd/actionlint/cmd/actionlint@latest diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index 85c2410..80d71df 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -21,7 +21,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - run: go mod download @@ -36,7 +36,7 @@ jobs: go-version: [ '1.17', '1.16' ] steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - run: go mod download diff --git a/.github/workflows/ci-goreleaser.yml b/.github/workflows/ci-goreleaser.yml index 4a0ef21..ecf7740 100644 --- a/.github/workflows/ci-goreleaser.yml +++ b/.github/workflows/ci-goreleaser.yml @@ -17,7 +17,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - uses: goreleaser/goreleaser-action@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b6675a..9f37e2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - name: Generate Release Notes