From 757210f198f5b7fad03ae7ab951a71990d0a4190 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 13:51:23 +0000 Subject: [PATCH] build(deps): bump actions/setup-go from 3.5.0 to 4.1.0 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3.5.0 to 4.1.0. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3.5.0...v4.1.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/lint.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3f6e468e..1d921009 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup Go - uses: actions/setup-go@v4 + uses: actions/setup-go@v4.1.0 with: go-version: '~1.19' - name: Clone the code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42f37c03..d6012fd4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: with: fetch-depth: 0 - name: Set up golang - uses: actions/setup-go@v3.5.0 + uses: actions/setup-go@v4.1.0 with: go-version: "1.20" - name: Hack around https://github.com/actions/checkout/issues/290