Skip to content

Commit

Permalink
Upgrade golang to 1.22.7
Browse files Browse the repository at this point in the history
  • Loading branch information
arzzon committed Oct 17, 2024
1 parent 50569d2 commit 58d7ff7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions azure-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ variables:
operatorImageName: 'f5networks/f5-cis-operator-devel'
operatorBundleImageName: 'f5networks/f5-cis-operator-bundle-devel'
operatorIndexImage: 'f5networks/f5-cis-operator-index-devel'
goVersion: 1.22.7

stages:
- stage: PreCheck
Expand Down
2 changes: 1 addition & 1 deletion build-tools/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.22 as builder

ARG REPOPATH=$GOPATH/src/github.com/F5Networks/k8s-bigip-ctlr
ARG RUN_TESTS
Expand Down
2 changes: 1 addition & 1 deletion build-tools/Dockerfile.debug
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.22 as builder

ARG REPOPATH=$GOPATH/src/github.com/F5Networks/k8s-bigip-ctlr
ARG RUN_TESTS
Expand Down
2 changes: 1 addition & 1 deletion build-tools/Dockerfile.ubi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.22 as builder

ARG REPOPATH=$GOPATH/src/github.com/F5Networks/k8s-bigip-ctlr
ARG RUN_TESTS
Expand Down
2 changes: 1 addition & 1 deletion build-tools/rel-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN_TESTS=${RUN_TESTS:-1}
if [ $RUN_TESTS -eq 1 ]; then
go install github.com/onsi/ginkgo/v2/ginkgo
go install github.com/onsi/gomega
GO111MODULE=off
GO111MODULE=on
go get github.com/wadey/gocovmerge
go get github.com/mattn/goveralls
echo "Gathering unit test code coverage for 'release' build..."
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/F5Networks/k8s-bigip-ctlr/v2

go 1.21.12
go 1.22.7

require (
github.com/F5Networks/f5-ipam-controller v0.1.8
Expand Down

0 comments on commit 58d7ff7

Please sign in to comment.