From 1cfb1c3bdcd9a2abefcef2eb12b001eec1245f66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Apr 2022 23:05:54 +0000 Subject: [PATCH] build(deps): bump actions/setup-go from 2 to 3 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] --- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/security.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f57339..c27855c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: - name: Get Go version id: gover run: echo "::set-output name=value::^$(grep 'go 1.' go.mod | cut -d ' ' -f 2)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.gover.outputs.value }} @@ -32,7 +32,7 @@ jobs: - name: Get Go version id: gover run: echo "::set-output name=value::^$(grep 'go 1.' go.mod | cut -d ' ' -f 2)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.gover.outputs.value }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8986f29..be3cf92 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,7 +10,7 @@ jobs: - name: Get Go version id: gover run: echo "::set-output name=value::^$(grep 'go 1.' go.mod | cut -d ' ' -f 2)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.gover.outputs.value }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6e559bf..2efe68e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,6 @@ jobs: update-goproxy: runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 - name: download latest version run: GOPROXY=https://proxy.golang.org GO111MODULE=on go get -d github.com/Nivl/git-go@main diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 50d2fe6..e0cbc8b 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 - name: Generate go.list run: go list -json -m all > go.list @@ -28,7 +28,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 - name: Generate go.list run: go list -json -m all > go.list