Skip to content

Commit

Permalink
升级框架
Browse files Browse the repository at this point in the history
  • Loading branch information
steden committed Nov 19, 2024
1 parent 9f99394 commit f203ac1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.23.3

- name: Go Mod Tidy
run: go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: 1.23.3

- name: Go Mod Tidy
run: go mod tidy
Expand Down
21 changes: 8 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,22 @@ module github.com/farseer-go/redis

go 1.21

toolchain go1.22.0
toolchain go1.23.3

require (
github.com/farseer-go/cache v0.14.0
github.com/farseer-go/collections v0.14.0
github.com/farseer-go/fs v0.14.0
github.com/farseer-go/cache v0.15.0
github.com/farseer-go/collections v0.15.0
github.com/farseer-go/fs v0.15.0
github.com/go-redis/redis/v8 v8.11.5
github.com/stretchr/testify v1.8.4
github.com/stretchr/testify v1.9.0
)

exclude github.com/timandy/routine v1.1.3

require (
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/farseer-go/mapper v0.14.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/farseer-go/mapper v0.15.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.12.0 // indirect
github.com/timandy/routine v1.1.2 // indirect
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
github.com/timandy/routine v1.1.4 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

0 comments on commit f203ac1

Please sign in to comment.