Skip to content

Commit d5ae1f7

Browse files
go lang base version upgrade (#238)
* go lang base version upgrade Signed-off-by: Renuka <renuka.singare@ibm.com> * updated dreadnought image Signed-off-by: Renuka <renuka.singare@ibm.com> --------- Signed-off-by: Renuka <renuka.singare@ibm.com>
1 parent 0e608dd commit d5ae1f7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v2
1515
with:
16-
go-version: '1.23.10'
16+
go-version: '1.23.12'
1717
- name: Check out code
1818
uses: actions/checkout@v2
1919
with:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
- GO111MODULE=on
77

88
go:
9-
- "1.23.10"
9+
- "1.23.12"
1010

1111
before_install:
1212
- go install github.com/mattn/goveralls@latest

Dockerfile.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.10
1+
FROM golang:1.23.12
22

33
WORKDIR /go/src/github.com/kubernetes-sigs/ibm-vpc-block-csi-driver
44
ADD . /go/src/github.com/kubernetes-sigs/ibm-vpc-block-csi-driver

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ GIT_COMMIT_SHA="$(shell git rev-parse HEAD 2>/dev/null)"
2020
GIT_REMOTE_URL="$(shell git config --get remote.origin.url 2>/dev/null)"
2121
BUILD_DATE="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")"
2222
OSS_FILES := go.mod Dockerfile
23-
GOLANG_VERSION="1.23.10"
23+
GOLANG_VERSION="1.23.12"
2424

2525

2626
STAGING_REGISTRY ?= gcr.io/k8s-staging-cloud-provider-ibm

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/kubernetes-sigs/ibm-vpc-block-csi-driver
22

3-
go 1.23.10
3+
go 1.23.12
44

55
require (
66
github.com/IBM/ibm-csi-common v1.1.23

0 commit comments

Comments
 (0)