Skip to content

Commit a4b03ec

Browse files
authored
Updated supported Go versions as Go 1.24 released. (#932)
1 parent 103756e commit a4b03ec

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
go: ['1.22', '1.23', 'tip']
21+
go: ['1.23', '1.24', 'tip']
2222
# Supported macOS versions can be found in
2323
# https://github.com/actions/virtual-environments#available-environments.
2424
os: ['macos-13', 'macos-14']
@@ -91,8 +91,8 @@ jobs:
9191
brew install graphviz
9292
# Do not let tools interfere with the main module's go.mod.
9393
cd && go mod init tools
94-
go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
95-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
94+
go install honnef.co/go/tools/cmd/staticcheck@2025.1.1
95+
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.7
9696
# Add PATH for installed tools.
9797
echo "$GOPATH/bin:$PATH" >> $GITHUB_PATH
9898
@@ -114,7 +114,7 @@ jobs:
114114
strategy:
115115
fail-fast: false
116116
matrix:
117-
go: ['1.22', '1.23', 'tip']
117+
go: ['1.23', '1.24', 'tip']
118118
os: ['ubuntu-22.04', 'ubuntu-20.04']
119119
steps:
120120
- name: Checkout the repo
@@ -181,8 +181,8 @@ jobs:
181181
sudo apt-get install graphviz
182182
# Do not let tools interfere with the main module's go.mod.
183183
cd && go mod init tools
184-
go install honnef.co/go/tools/cmd/staticcheck@v0.5.1
185-
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.60.3
184+
go install honnef.co/go/tools/cmd/staticcheck@2025.1.1
185+
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.64.7
186186
# Add PATH for installed tools.
187187
echo "$GOPATH/bin:$PATH" >> $GITHUB_PATH
188188
@@ -205,7 +205,7 @@ jobs:
205205
strategy:
206206
fail-fast: false
207207
matrix:
208-
go: ['1.22', '1.23']
208+
go: ['1.23', '1.24']
209209
steps:
210210
- name: Checkout the repo
211211
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

browsertests/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/google/pprof/browsertests
22

3-
go 1.22
3+
go 1.23
44

55
// Use the version of pprof in this directory tree.
66
replace github.com/google/pprof => ../

go.mod

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

3-
go 1.22
3+
go 1.23
44

55
require (
66
github.com/chzyer/readline v1.5.1

0 commit comments

Comments
 (0)