Skip to content

Commit

Permalink
update dependencies, require go 1.20, run tests on go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
b-dean committed Jan 25, 2024
1 parent a42c942 commit 061bbdf
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 460 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
go-version: '1.20'
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.18', '1.19', '1.20']
version: ['1.20', '1.21']
name: Go ${{ matrix.version }}
steps:
- uses: actions/setup-go@v3
Expand Down
24 changes: 12 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
module github.com/ontariosystems/isclib/v2

go 1.19
go 1.20

require (
github.com/onsi/ginkgo/v2 v2.8.3
github.com/onsi/gomega v1.27.1
github.com/sirupsen/logrus v1.9.0
github.com/spf13/afero v1.9.4
github.com/onsi/ginkgo/v2 v2.15.0
github.com/onsi/gomega v1.31.1
github.com/sirupsen/logrus v1.9.3
github.com/spf13/afero v1.11.0
)

require (
github.com/go-logr/logr v1.2.3 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/go-logr/logr v1.3.0 // indirect
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/tools v0.6.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.16.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 061bbdf

Please sign in to comment.