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
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
go-version: 1.24.x
cache: true

- name: Build
Expand All @@ -44,13 +44,13 @@ jobs:
- uses: actions/setup-go@v5
name: Set up Go
with:
go-version: 1.22.x
go-version: 1.24.x
cache: false # managed by golangci-lint

- uses: golangci/golangci-lint-action@v6
name: Install golangci-lint
with:
version: latest
version: v1.64.8
args: --help # make lint will run the linter

- run: make lint
Expand Down
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ linters-settings:
govet:
# These govet checks are disabled by default, but they're useful.
enable:
- niliness
- nilness
- reflectvaluecompare
- sortslice
- unusedwrite
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# It does not include a sally configuration.
# A /sally.yaml file is required for this to run.

FROM golang:1.22-alpine
FROM golang:1.24-alpine

COPY . /build
WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module go.uber.org/sally

go 1.22
go 1.24

require (
github.com/stretchr/testify v1.10.0
Expand Down