Skip to content

Commit

Permalink
update deps and remove replacement of go-tpm with fork
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasten committed May 13, 2024
1 parent a683be6 commit 05f8770
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 1,246 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: '1.20'
go-version: "1.22"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- run: go test -race -count=3 ./...
32 changes: 17 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
module github.com/edgelesssys/go-azguestattestation

go 1.20

replace github.com/google/go-tpm => github.com/thomasten/go-tpm v0.0.0-20230629092004-f43f8e2a59eb
go 1.22.0

require (
github.com/go-jose/go-jose/v3 v3.0.0
github.com/google/go-attestation v0.5.0
github.com/google/go-tpm v0.9.0
github.com/google/go-tpm-tools v0.4.0
github.com/stretchr/testify v1.8.2
github.com/go-jose/go-jose/v3 v3.0.3
github.com/google/go-attestation v0.5.1
github.com/google/go-tpm v0.9.1-0.20240510201744-5c2f0887e003
github.com/google/go-tpm-tools v0.4.4
github.com/stretchr/testify v1.9.0
)

require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/certificate-transparency-go v1.1.2 // indirect
github.com/google/go-sev-guest v0.6.1 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/certificate-transparency-go v1.1.8 // indirect
github.com/google/go-configfs-tsm v0.2.2 // indirect
github.com/google/go-sev-guest v0.11.1 // indirect
github.com/google/go-tdx-guest v0.3.1 // indirect
github.com/google/go-tspi v0.3.0 // indirect
github.com/google/logger v1.1.1 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/pborman/uuid v1.2.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
golang.org/x/sys v0.9.0 // indirect
google.golang.org/protobuf v1.28.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/sys v0.20.0 // indirect
google.golang.org/protobuf v1.34.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 05f8770

Please sign in to comment.