Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/setup-go from 2 to 3 #2588

Merged
merged 1 commit into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)"
echo "::set-output name=k8s_latest::$(grep -m1 'FROM kindest/node' <tests/docker/Dockerfile | awk -F'[:v]' '{print $3}')"
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: Determine GOPATH
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-build-
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ needs.checks.outputs.go_version }}
- name: Build binary
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-tests-
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ needs.checks.outputs.go_version }}
- name: Run Tests
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-build-
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ needs.checks.outputs.go_version }}
- name: Publish Release Notes on new tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
id: vars
run: echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)"
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.vars.outputs.go_version }}
- name: Lint Code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
restore-keys: |
${{ runner.os }}-go-build-
- name: Setup Golang Environment
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ needs.variables.outputs.go_version }}
- name: Determine GOPATH
Expand Down