Skip to content

Commit 0b77dc2

Browse files
authored
Upgrade golang 1.23.7 (#4796)
* Update golang dockerfile Signed-off-by: cheyang <cheyang@163.com> * Update golang version in CI files Signed-off-by: cheyang <cheyang@163.com> --------- Signed-off-by: cheyang <cheyang@163.com>
1 parent 600ac08 commit 0b77dc2

15 files changed

Lines changed: 26 additions & 26 deletions

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build:
77
docker:
88
# specify the version
9-
- image: cimg/go:1.22.10
9+
- image: cimg/go:1.23.7
1010
working_directory: ~/project/src/github.com/fluid-cloudnative/fluid
1111
environment:
1212
TEST_FLAGS: '-race -coverprofile=coverage.txt -covermode=atomic'

.github/workflows/kind-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616
cancel-in-progress: true
1717

1818
env:
19-
GO_VERSION: 1.22.10
19+
GO_VERSION: 1.23.7
2020

2121
jobs:
2222
kind-e2e-test:

.github/workflows/project-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ master, release-* ]
88

99
env:
10-
GO_VERSION: 1.22.10
10+
GO_VERSION: 1.23.7
1111

1212
# Declare default permissions as read only.
1313
permissions: read-all

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ matrix:
22
include:
33
- language: go
44
go:
5-
- "1.22.10"
5+
- "1.23.7"
66
os:
77
- linux
88
go_import_path: github.com/fluid-cloudnative/fluid

docker/Dockerfile.alluxioruntime

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the alluxioruntime-controller manager binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

docker/Dockerfile.application

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the fluidapp-controller manager binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

docker/Dockerfile.csi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the csi binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

docker/Dockerfile.dataset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the dataset-controller manager binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

docker/Dockerfile.efcruntime

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the efcruntime-controller manager binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

docker/Dockerfile.goosefsruntime

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build the goosefsruntime-controller manager binary
2-
# golang:1.22.10-bullseye
3-
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
2+
# golang:1.23.7-bullseye
3+
FROM golang:1.23.7-bullseye as builder
44

55
WORKDIR /go/src/github.com/fluid-cloudnative/fluid
66
COPY . .

0 commit comments

Comments
 (0)