Skip to content

Commit f935935

Browse files
authored
Merge pull request #923 from mythi/PR-2022-019
ci: move to Go 1.18
2 parents c34eb51 + 30158c8 commit f935935

19 files changed

+20
-20
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- 'release-*'
1111
env:
1212
RUNC_VERSION: v1.0.3
13-
GO_VERSION: 1.17.4
13+
GO_VERSION: 1.18
1414
K8S_VERSION: 1.22.1
1515
jobs:
1616

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pipeline {
1212
CRIO_VERSION="v1.21.4"
1313
K8S_VERSION="1.22.1"
1414
GOLANGCI_LINT_VERSION="v1.45.0"
15-
GO_VERSION="1.17.4"
15+
GO_VERSION="1.18"
1616
GO_TAR="go${GO_VERSION}.linux-amd64.tar.gz"
1717
GOROOT="/usr/local/go"
1818
GOPATH="/tmp/go"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ install-tools:
4848
$(GO) install sigs.k8s.io/kind@${KIND_VERSION}
4949

5050
go-mod-tidy:
51-
$(GO) mod download
51+
$(GO) mod download all
5252
@report=`$(GO) mod tidy -v 2>&1` ; if [ -n "$$report" ]; then echo "$$report"; exit 1; fi
5353

5454
update-fixture:
@@ -159,7 +159,7 @@ terrascan:
159159

160160
pre-pull:
161161
ifeq ($(TAG),devel)
162-
@$(BUILDER) pull golang:1.17-bullseye
162+
@$(BUILDER) pull golang:1.18-bullseye
163163
@$(BUILDER) pull debian:unstable-slim
164164
@$(BUILDER) pull clearlinux:latest
165165
@$(BUILDER) pull ubuntu:20.04

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-dlb-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-dsa-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-fpga-plugin.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

build/docker/intel-gpu-initcontainer.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
# This is used on release branches before tagging a stable version.
2020
# The main branch defaults to using the latest Golang base image.
21-
ARG GOLANG_BASE=golang:1.17-bullseye
21+
ARG GOLANG_BASE=golang:1.18-bullseye
2222

2323
# FINAL_BASE can be used to configure the base image of the final image.
2424
#

0 commit comments

Comments
 (0)