Skip to content

Commit

Permalink
Switch to go 1.20 for CI jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
  • Loading branch information
saschagrunert committed Feb 6, 2023
1 parent 2612905 commit 019bb97
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -5,7 +5,7 @@ on:
- main
pull_request:
env:
GO_VERSION: '1.19'
GO_VERSION: '1.20'

permissions: {}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/olm_tests.yaml
Expand Up @@ -5,7 +5,7 @@ on:
- main
pull_request:
env:
GO_VERSION: '1.19'
GO_VERSION: '1.20'
KIND_IMG_TAG: v1.25.3

permissions: {}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -5,7 +5,7 @@ on:
- main
pull_request:
env:
GO_VERSION: '1.19'
GO_VERSION: '1.20'

permissions: {}

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -18,7 +18,7 @@ GOLANGCI_LINT_VERSION = v1.51.0
REPO_INFRA_VERSION = v0.2.5
KUSTOMIZE_VERSION = 4.5.7
OPERATOR_SDK_VERSION ?= v1.25.0
CI_IMAGE ?= golang:1.19
CI_IMAGE ?= golang:1.20

CONTROLLER_GEN_CMD := CGO_LDFLAGS= $(GO) run -tags generate sigs.k8s.io/controller-tools/cmd/controller-gen

Expand Down
2 changes: 1 addition & 1 deletion dependencies.yaml
@@ -1,6 +1,6 @@
dependencies:
- name: go
version: 1.19
version: 1.20
refPaths:
- path: .github/workflows/build.yml
match: GO_VERSION
Expand Down
2 changes: 1 addition & 1 deletion hack/ci/Vagrantfile-fedora
Expand Up @@ -24,7 +24,7 @@ Vagrant.configure("2") do |config|
# Use a non-localhost DNS to avoid cluster DNS lookup loops
echo "nameserver 8.8.8.8" > /etc/resolv.conf
GO_VERSION=1.19
GO_VERSION=1.20
curl -sSfL -o- https://dl.google.com/go/go"$GO_VERSION".linux-amd64.tar.gz |
tar xfz - -C /usr/local
Expand Down
2 changes: 1 addition & 1 deletion hack/ci/Vagrantfile-flatcar
Expand Up @@ -60,7 +60,7 @@ Vagrant.configure("2") do |config|
crictl --runtime-endpoint="unix:///run/containerd/containerd.sock" images
# Install Go
GO_VERSION=1.19
GO_VERSION=1.20
mkdir /opt/go
curl -sSfL -o- https://golang.org/dl/go$GO_VERSION.linux-amd64.tar.gz | tar xfz - -C /opt
Expand Down
2 changes: 1 addition & 1 deletion hack/ci/Vagrantfile-ubuntu
Expand Up @@ -25,7 +25,7 @@ Vagrant.configure("2") do |config|
# Use a non-localhost DNS to avoid cluster DNS lookup loops
echo "nameserver 8.8.8.8" > /etc/resolv.conf
GO_VERSION=1.19
GO_VERSION=1.20
curl -sSfL -o- https://dl.google.com/go/go"$GO_VERSION".linux-amd64.tar.gz |
tar xfz - -C /usr/local
Expand Down

0 comments on commit 019bb97

Please sign in to comment.