Skip to content

Commit 4656038

Browse files
committed
Update for support Go 1.24
1 parent fe4d22a commit 4656038

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install Go
4040
uses: actions/setup-go@v5
4141
with:
42-
go-version: 1.23
42+
go-version: 1.24
4343

4444
- name: Checkout Code Base
4545
uses: actions/checkout@v4
@@ -66,7 +66,7 @@ jobs:
6666
needs: [license-check, lint]
6767
strategy:
6868
matrix:
69-
go-version: [1.23, stable]
69+
go-version: [1.24, stable]
7070
os: [ubuntu-latest]
7171
runs-on: ${{ matrix.os }}
7272
steps:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ linters-settings:
454454

455455
unused:
456456
# Select the Go version to target. The default is '1.13'.
457-
go: "1.23"
457+
go: "1.24"
458458

459459
whitespace:
460460
multi-if: false # Enforces newlines (or comments) after every multi-line if statement

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717
#
18-
FROM golang:1.23 as build
18+
FROM golang:1.24 as build
1919

2020
WORKDIR /kvctl
2121

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/apache/kvrocks-controller
22

3-
go 1.23
3+
go 1.24
44

5-
toolchain go1.23.4
5+
toolchain go1.24.0
66

77
require (
88
github.com/fatih/color v1.18.0

0 commit comments

Comments
 (0)