Skip to content

Commit 12310e8

Browse files
authored
Merge pull request #2 from ClickHouse/gm/experiment-trigger
feat: upgrade Go tooling from 1.22 to 1.24
2 parents 5fca392 + ce72bfa commit 12310e8

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: 1.22.x
23+
go-version: 1.24.x
2424
cache: true
2525

2626
- name: Build
@@ -44,13 +44,13 @@ jobs:
4444
- uses: actions/setup-go@v5
4545
name: Set up Go
4646
with:
47-
go-version: 1.22.x
47+
go-version: 1.24.x
4848
cache: false # managed by golangci-lint
4949

5050
- uses: golangci/golangci-lint-action@v6
5151
name: Install golangci-lint
5252
with:
53-
version: latest
53+
version: v1.64.8
5454
args: --help # make lint will run the linter
5555

5656
- run: make lint

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linters-settings:
1313
govet:
1414
# These govet checks are disabled by default, but they're useful.
1515
enable:
16-
- niliness
16+
- nilness
1717
- reflectvaluecompare
1818
- sortslice
1919
- unusedwrite

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# It does not include a sally configuration.
33
# A /sally.yaml file is required for this to run.
44

5-
FROM golang:1.22-alpine
5+
FROM golang:1.24-alpine
66

77
COPY . /build
88
WORKDIR /build

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module go.uber.org/sally
22

3-
go 1.22
3+
go 1.24
44

55
require (
66
github.com/stretchr/testify v1.10.0

0 commit comments

Comments
 (0)