Skip to content

Commit

Permalink
bump deps and generate with go1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
hidu committed Aug 25, 2024
1 parent 2f1eba2 commit 4616735
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.21','1.22' ]
go-version: ['1.21','1.22' ,'1.23']
servers: [ "ubuntu-latest","windows-latest","macos-latest","macos-13"]
steps:
- uses: actions/checkout@v4

- name: Setup Go ${{ matrix.go-version }}
- name: Go ${{ matrix.go }} On ${{ matrix.servers }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ module github.com/fsgo/go_fmt
go 1.21

require (
github.com/fsgo/fst v0.0.2
github.com/fsgo/fst v0.0.5
github.com/google/go-cmp v0.6.0
golang.org/x/mod v0.19.0
golang.org/x/tools v0.23.0
golang.org/x/mod v0.20.0
golang.org/x/tools v0.24.0
)

require golang.org/x/sync v0.7.0 // indirect
require golang.org/x/sync v0.8.0 // indirect
16 changes: 8 additions & 8 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
github.com/fsgo/fst v0.0.2 h1:mrF6KJdOcMZaoj62EdPTBaXP9RXx/GIfokqR/MbD5c4=
github.com/fsgo/fst v0.0.2/go.mod h1:vNB0la0LICDwsMuwD7KR8NNDnslYyH/1x1+fOamXra8=
github.com/fsgo/fst v0.0.5 h1:c12J39shorNiS3X9QsK6sg/KUzw8FOA3IoKPb/upj7E=
github.com/fsgo/fst v0.0.5/go.mod h1:vNB0la0LICDwsMuwD7KR8NNDnslYyH/1x1+fOamXra8=
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
golang.org/x/mod v0.19.0 h1:fEdghXQSo20giMthA7cd28ZC+jts4amQ3YMXiP5oMQ8=
golang.org/x/mod v0.19.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M=
golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/tools v0.23.0 h1:SGsXPZ+2l4JsgaCKkx+FQ9YZ5XEtA1GZYuoDjenLjvg=
golang.org/x/tools v0.23.0/go.mod h1:pnu6ufv6vQkll6szChhK3C3L/ruaIv5eBeztNG8wtsI=
golang.org/x/mod v0.20.0 h1:utOm6MM3R3dnawAiJgn0y+xvuYRsm1RKM/4giyfDgV0=
golang.org/x/mod v0.20.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c=
golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ=
golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
golang.org/x/tools v0.24.0 h1:J1shsA93PJUEVaUSaay7UXAyE8aimq3GW0pjlolpa24=
golang.org/x/tools v0.24.0/go.mod h1:YhNqVBIfWHdzvTLs0d8LCuMhkKUgSUKldakyV7W/WDQ=
4 changes: 3 additions & 1 deletion internal/pkgs/std_static.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Code Generate by cmd/update_std_static.go, DO NOT EDIT.

// GO VersionFile: go1.22.0
// GO VersionFile: go1.23.0

package pkgs

Expand Down Expand Up @@ -47,12 +47,14 @@ var stdPKGs = []string{
"sort",
"strconv",
"strings",
"structs",
"sync",
"syscall",
"testdata",
"testing",
"text",
"time",
"unicode",
"unique",
"unsafe",
}

0 comments on commit 4616735

Please sign in to comment.