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

Update Go to 1.17.3 #607

Merged
merged 2 commits into from
Nov 5, 2021
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
4 changes: 2 additions & 2 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
- name: Set up Go
uses: actions/setup-go@331ce1d993939866bb63c32c6cbbfd48fa76fc57
with:
go-version: 1.17.2
go-version: 1.17.3

- name: Run static checks
uses: golangci/golangci-lint-action@5c56cd6c9dc07901af25baab6f2b0d9f3b7c3018
with:
version: v1.42.1
version: v1.43.0
args: --config=.golangci.yml --verbose
skip-go-installation: true
skip-pkg-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@331ce1d993939866bb63c32c6cbbfd48fa76fc57
with:
go-version: 1.17.2
go-version: 1.17.3

- name: Set up Go for root
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multicluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@331ce1d993939866bb63c32c6cbbfd48fa76fc57
with:
go-version: 1.17.2
go-version: 1.17.3

- name: Set up job variables
id: vars
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@331ce1d993939866bb63c32c6cbbfd48fa76fc57
with:
go-version: 1.17.2
go-version: 1.17.3

- name: Generate the artifacts
run: make release
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ release:
--env "RELEASE_GID=$(RELEASE_GID)" \
--rm \
--workdir /cilium \
--volume `pwd`:/cilium docker.io/library/golang:1.17.2-alpine3.14 \
--volume `pwd`:/cilium docker.io/library/golang:1.17.3-alpine3.14 \
sh -c "apk add --no-cache make git && make local-release VERSION=${VERSION}"

local-release: clean
Expand Down