Skip to content

Commit 16999a7

Browse files
sywhangabhinav
andauthored
[chore] run CI on Go 1.24 (#1261)
Co-authored-by: Abhinav Gupta <[email protected]>
1 parent f11bfed commit 16999a7

File tree

3 files changed

+16
-13
lines changed

3 files changed

+16
-13
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
os: ["ubuntu-latest", "windows-latest"]
22-
go: ["1.22.x", "1.23.x"]
22+
go: ["1.23.x", "1.24.x"]
2323

2424
steps:
2525
- name: Checkout code
@@ -52,7 +52,7 @@ jobs:
5252
- name: Setup Go
5353
uses: actions/setup-go@v5
5454
with:
55-
go-version: 1.23.x
55+
go-version: 1.24.x
5656

5757
- name: Test
5858
run: make cover COVER_MODULES=./docs
@@ -68,7 +68,7 @@ jobs:
6868
- name: Setup Go
6969
uses: actions/setup-go@v5
7070
with:
71-
go-version: 1.23.x
71+
go-version: 1.24.x
7272
cache: false # managed by golangci-lint
7373

7474
- uses: golangci/golangci-lint-action@v6

tools/go.mod

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
module go.uber.org/fx/tools
22

3-
go 1.20
3+
go 1.22.0
44

5-
require golang.org/x/tools v0.24.0
5+
toolchain go1.24.0
6+
7+
require golang.org/x/tools v0.30.0
68

79
require (
8-
golang.org/x/mod v0.20.0 // indirect
9-
golang.org/x/sync v0.8.0 // indirect
10+
golang.org/x/mod v0.23.0 // indirect
11+
golang.org/x/sync v0.11.0 // indirect
1012
)

tools/go.sum

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
2-
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
3-
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
4-
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
5-
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
6-
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
7-
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
2+
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
3+
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
4+
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
5+
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=
6+
golang.org/x/sync v0.11.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
7+
golang.org/x/tools v0.30.0 h1:BgcpHewrV5AUp2G9MebG4XPFI1E2W41zU1SaqVA9vJY=
8+
golang.org/x/tools v0.30.0/go.mod h1:c347cR/OJfw5TI+GfX7RUPNMdDRRbjvYTS0jPyvsVtY=

0 commit comments

Comments
 (0)