From ffc2b2c34038e67f811ab4c6d4a979ac9f7f445c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Mar 2022 08:41:06 +0000 Subject: [PATCH] Update actions/setup-go action to v3 --- .github/workflows/build.yml | 4 ++-- .github/workflows/coverage.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 54e3684..0ba2da7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -27,7 +27,7 @@ jobs: fail-fast: false steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory @@ -51,7 +51,7 @@ jobs: fail-fast: false steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4924803..8cd42d8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -25,7 +25,7 @@ jobs: timeout-minutes: 2 steps: - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - name: Check out code into the Go module directory