Skip to content

Commit

Permalink
Update all deps and use go-1.18 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 authored Jul 6, 2022
1 parent aa2999a commit e41a969
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 355 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: golangci/golangci-lint-action@v2
with:
args: -p bugs -p unused
- name: Set up Go 1.17
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: '1.17.x'
go-version: '1.18.x'
- name: Test
run: |
make test
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
uses: golangci/golangci-lint-action@v2
with:
args: -p bugs -p unused
- name: Set up Go 1.17
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: '1.17.x'
go-version: '1.18.x'
- name: Test
run: |
make test
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.idea/
coverage.out
.vscode
31 changes: 15 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
module github.com/metal-stack/security

go 1.17
go 1.18

require (
github.com/coreos/go-oidc/v3 v3.1.0
github.com/go-openapi/runtime v0.23.3
github.com/golang-jwt/jwt/v4 v4.4.1
github.com/google/go-cmp v0.5.7
github.com/coreos/go-oidc/v3 v3.2.0
github.com/go-openapi/runtime v0.24.1
github.com/golang-jwt/jwt/v4 v4.4.2
github.com/google/go-cmp v0.5.8
github.com/google/uuid v1.3.0
github.com/gorilla/mux v1.8.0
github.com/lestrrat-go/jwx v1.2.22
github.com/stretchr/testify v1.7.1
github.com/lestrrat-go/jwx v1.2.25
github.com/stretchr/testify v1.8.0
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4
golang.org/x/net v0.0.0-20220412020605-290c469a71a5
golang.org/x/oauth2 v0.0.0-20220411215720-9780585627b5
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d
golang.org/x/net v0.0.0-20220630215102-69896b714898
golang.org/x/oauth2 v0.0.0-20220630143837-2104d58473e0
gopkg.in/square/go-jose.v2 v2.6.0
)

Expand All @@ -27,8 +27,8 @@ require (
github.com/go-openapi/strfmt v0.21.2 // indirect
github.com/go-openapi/swag v0.21.1 // indirect
github.com/go-stack/stack v1.8.1 // indirect
github.com/goccy/go-json v0.9.6 // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/goccy/go-json v0.9.7 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
Expand All @@ -43,9 +43,8 @@ require (
go.mongodb.org/mongo-driver v1.9.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.25.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit e41a969

Please sign in to comment.