Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
build:
docker:
# specify the version
- image: cimg/go:1.22.10
- image: cimg/go:1.23.7
working_directory: ~/project/src/github.com/fluid-cloudnative/fluid
environment:
TEST_FLAGS: '-race -coverprofile=coverage.txt -covermode=atomic'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kind-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
cancel-in-progress: true

env:
GO_VERSION: 1.22.10
GO_VERSION: 1.23.7

jobs:
kind-e2e-test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/project-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ master, release-* ]

env:
GO_VERSION: 1.22.10
GO_VERSION: 1.23.7

# Declare default permissions as read only.
permissions: read-all
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ matrix:
include:
- language: go
go:
- "1.22.10"
- "1.23.7"
os:
- linux
go_import_path: github.com/fluid-cloudnative/fluid
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.alluxioruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the alluxioruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.application
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the fluidapp-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we stop pinning image's hash?

# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.csi
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the csi binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.dataset
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the dataset-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.efcruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the efcruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.goosefsruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the goosefsruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.jindoruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the jindoruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.juicefsruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the juicefsruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.thinruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the thinruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.vineyardruntime
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the vineyardruntime-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.webhook
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Build the dataset-controller manager binary
# golang:1.22.10-bullseye
FROM golang@sha256:1e3e0cdab013c62de8c3f4fe942138255e6a367b90079220ed6f3853a34329ff as builder
# golang:1.23.7-bullseye
FROM golang:1.23.7-bullseye as builder

WORKDIR /go/src/github.com/fluid-cloudnative/fluid
COPY . .
Expand Down
Loading