Skip to content

Commit

Permalink
update the pomerium/webauthn dependency (#334)
Browse files Browse the repository at this point in the history
Remove the outdated transitive dependency gopkg.in/square/go-jose.v2.

It looks like github.com/google/go-tpm v0.9.1 requires Go 1.22, so
update the GitHub Actions workflows to Go 1.22 as well.
  • Loading branch information
kenjenkins authored Jul 16, 2024
1 parent 651a53c commit c52d2f5
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 123 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: 1.21.x
go-version: 1.22.x
cache: false

- uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7
with:
go-version: 1.21.x
go-version: 1.22.x

- name: setup node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.21.4
golang 1.22.4
9 changes: 4 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
module github.com/pomerium/verify

go 1.20
go 1.22.0

require (
cloud.google.com/go/firestore v1.15.0
github.com/go-chi/chi v4.1.2+incompatible
github.com/go-jose/go-jose/v3 v3.0.3
github.com/ory/dockertest/v3 v3.10.0
github.com/pomerium/sdk-go v0.0.9
github.com/pomerium/webauthn v0.0.0-20221118023040-00a9c430578b
github.com/pomerium/webauthn v0.0.0-20240705200407-5829ef018013
github.com/rs/zerolog v1.33.0
github.com/stretchr/testify v1.9.0
golang.org/x/sync v0.7.0
Expand All @@ -31,14 +31,14 @@ require (
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-tpm v0.3.3 // indirect
github.com/google/go-tpm v0.9.1 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.6.0 // indirect
Expand Down Expand Up @@ -84,7 +84,6 @@ require (
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit c52d2f5

Please sign in to comment.