From 2e2009bf771e8642c85800d70b1fabf42cf88e1f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Mar 2023 21:07:03 +0000 Subject: [PATCH 1/2] Bump actions/setup-go from 3 to 4 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d0421f..4194366 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: go-version: '1.20' cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a37021f..cd3d009 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.ref }} - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v4 with: go-version: '1.20' cache: true From fedf80ed2531947757be6313b5e40adb953a1f4a Mon Sep 17 00:00:00 2001 From: Spenser Black Date: Wed, 15 Mar 2023 18:44:33 -0400 Subject: [PATCH 2/2] Remove `cache: true` The action supposedly detects this automatically, now. --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cd3d009..cad2599 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,6 @@ jobs: - uses: actions/setup-go@v4 with: go-version: '1.20' - cache: true - name: Build Release Assets run: make all env: