From 0ccab08bd037854f49a2ef9a0ccdf8c3cfad4433 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 18:26:47 +0000 Subject: [PATCH] Bump actions/setup-go from 4.0.1 to 5.2.0 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.0.1 to 5.2.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v4.0.1...v5.2.0) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 616ea48da..c7ab04a33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up Go 1.x - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v5.2.0 with: go-version: 1.21.7 id: go diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8841f73c2..344afee39 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - - uses: actions/setup-go@v4.0.1 + - uses: actions/setup-go@v5.2.0 with: go-version: 1.21.7 # Initializes the CodeQL tools for scanning. diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index cd79a487b..10c23bef0 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -17,7 +17,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v4.0.1 + - uses: actions/setup-go@v5.2.0 with: go-version: 1.21.7 # we run the linter with go 1.21 to match dev laptops even though we use 1.18 for the chain (don't update the chain to 1.19 please-- there is an issue in golang causing 1.19 to output some hashes differently from 1.18) - uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c05de64fc..1ab17c8d0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - os: macos-latest steps: - name: Set up Go 1.x - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v5.2.0 with: go-version: 1.21.7 id: go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d77978ca6..c60bcb52b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: uses: actions/checkout@v3 - name: Setup Golang - uses: actions/setup-go@v4.0.1 + uses: actions/setup-go@v5.2.0 with: go-version: 1.21.7 -