Skip to content

Commit 0c3fceb

Browse files
committed
update go 1.24
1 parent 228d779 commit 0c3fceb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99

10-
- name: Set up Go 1.23
10+
- name: Set up Go 1.24
1111
uses: actions/setup-go@v1
1212
with:
13-
go-version: 1.23
13+
go-version: 1.24
1414
id: go
1515

1616
- name: Check out code into the Go module directory

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v3
2121
- uses: actions/setup-go@v4
2222
with:
23-
go-version: '1.23'
23+
go-version: '1.24'
2424
cache: false
2525
- name: golangci-lint
2626
uses: golangci/golangci-lint-action@v3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23 as build
1+
FROM golang:1.24 as build
22

33
WORKDIR /go/src/app
44

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/salesforce/kubelet-summary-exporter
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/alecthomas/kong v0.9.0

0 commit comments

Comments
 (0)