diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 657d946..e93c685 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/go.mod b/go.mod index d87e017..0ea106f 100644 --- a/go.mod +++ b/go.mod @@ -2,20 +2,18 @@ module github.com/farseer-go/rabbit go 1.21 -toolchain go1.22.0 +toolchain go1.23.3 require ( - github.com/farseer-go/collections v0.14.0 - github.com/farseer-go/fs v0.14.0 + github.com/farseer-go/collections v0.15.0 + github.com/farseer-go/fs v0.15.0 github.com/rabbitmq/amqp091-go v1.10.0 - 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/davecgh/go-spew v1.1.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/timandy/routine v1.1.2 // indirect + github.com/timandy/routine v1.1.4 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect )