Skip to content

Commit 9ddfa8e

Browse files
committed
all: update go and dependency versions [generated]
Fixes #66. [git-generate] go get go@1.23.0 toolchain@none golang.org/x/tools@v0.30.0 golang.org/x/text@v0.22.0 go mod tidy sed -i '' 's/21/24/' .github/workflows/test.yml sed -i '' 's/20/23/' .github/workflows/test.yml
1 parent db6ad29 commit 9ddfa8e

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.20.x, 1.21.x]
7+
go-version: [1.23.x, 1.24.x]
88
# TODO: os: [ubuntu-latest, macos-latest, windows-latest]
99
os: [ubuntu-latest]
1010
runs-on: ${{ matrix.os }}
@@ -18,7 +18,7 @@ jobs:
1818

1919
# Static checks from this point forward. Only run on one Go version and on
2020
# Linux, since it's the fastest platform, and the tools behave the same.
21-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.21.x'
21+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
2222
run: diff <(echo -n) <(gofmt -s -d .)
23-
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.21.x'
23+
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
2424
run: go vet ./...

go.mod

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/mdempsky/unconvert
22

3-
go 1.20
3+
go 1.23.0
44

55
require (
6-
golang.org/x/text v0.13.0
7-
golang.org/x/tools v0.13.0
6+
golang.org/x/text v0.22.0
7+
golang.org/x/tools v0.30.0
88
)
99

1010
require (
11-
golang.org/x/mod v0.12.0 // indirect
12-
golang.org/x/sys v0.12.0 // indirect
11+
golang.org/x/mod v0.23.0 // indirect
12+
golang.org/x/sync v0.11.0 // indirect
1313
)

go.sum

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc=
2-
golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
3-
golang.org/x/sync v0.3.0 h1:ftCYgMx6zT/asHUrPw8BLLscYtGznsLAnjq5RH9P66E=
4-
golang.org/x/sys v0.12.0 h1:CM0HF96J0hcLAwsHPJZjfdNzs0gftsLfgKt57wWHJ0o=
5-
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6-
golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k=
7-
golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
8-
golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ=
9-
golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58=
1+
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
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/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
8+
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
9+
golang.org/x/tools v0.30.0 h1:BgcpHewrV5AUp2G9MebG4XPFI1E2W41zU1SaqVA9vJY=
10+
golang.org/x/tools v0.30.0/go.mod h1:c347cR/OJfw5TI+GfX7RUPNMdDRRbjvYTS0jPyvsVtY=

0 commit comments

Comments
 (0)