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

chore(deps): bump go to 1.20.6 #7237

Closed
wants to merge 1 commit into from
Closed
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ parameters:
# These parameters are not meant to be changed they are more constants for the build change these in mk/dev.mk
go_version:
type: string
default: "1.20.5"
default: "1.20.6"
first_k8s_version:
type: string
default: "v1.22.9-k3s1"
2 changes: 1 addition & 1 deletion .github/workflows/blackbox-tests.yaml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
- name: "Set up Go"
uses: actions/setup-go@v4
with:
go-version: "1.20.5"
go-version: "1.20.6"
- name: "Configure go modules cache"
uses: actions/cache@v3
with:
2 changes: 1 addition & 1 deletion .github/workflows/pr-comments.yaml
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ jobs:
GITHUB_TOKEN: ${{ steps.github-app-token.outputs.token }}
- uses: actions/setup-go@v4
with:
go-version: "1.20.5"
go-version: "1.20.6"
- uses: actions/cache@v3
with:
path: |
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.20.5"
go-version: "1.20.6"
- name: install-kuma-ci-tools
run: |
echo $(go env GOPATH)/bin >> $GITHUB_PATH
2 changes: 1 addition & 1 deletion .github/workflows/update-docs.yaml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
path: repo
- uses: actions/setup-go@v4
with:
go-version: "1.20.5"
go-version: "1.20.6"
- name: "sync docs" # loop over all the branches and generate the docs
run: |
cd repo
2 changes: 1 addition & 1 deletion .github/workflows/update-insecure-dependencies.yaml
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ jobs:
ref: ${{ matrix.branch }}
- uses: actions/setup-go@v4
with:
go-version: "1.20.5"
go-version: "1.20.6"
- name: "Install tools"
run: |
go install github.com/google/osv-scanner/cmd/osv-scanner@v1
2 changes: 1 addition & 1 deletion mk/dependencies/deps.lock
Original file line number Diff line number Diff line change
@@ -1 +1 @@
f3579c9d85a8fa32ac7b88804a3d938371baa979
374b5ae6225b599bd4aa3c5c1293d620bbefd6ea
2 changes: 1 addition & 1 deletion mk/dev.mk
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ CI_TOOLS_BIN_DIR=$(CI_TOOLS_DIR)/bin
# Change here and `make check` ensures these are used for CI
K8S_MIN_VERSION = v1.22.9-k3s1
K8S_MAX_VERSION = v1.27.1-k3s1
GO_VERSION := 1.20.5
GO_VERSION := 1.20.6
GOOS := $(shell go env GOOS)
GOARCH := $(shell go env GOARCH)