Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,34 @@ linters:
path: pkg/cosign/verify_bundle_test.go
# NewEntry used for Rekor v1, will update to NewTlogEntry for Rekor v2 support
text: SA1019
# in-toto-golang v0.11.0 deprecated the legacy Statement/StatementHeader/
# Subject/ProvenancePredicate types in favor of the protobuf-generated
# in_toto Attestation Framework v1 API. Migrating the attestation code is a
# separate effort; suppress the deprecation lint until then.
- linters:
- staticcheck
path: pkg/cosign/attestation/attestation.go
text: SA1019
- linters:
- staticcheck
path: pkg/cosign/fetch.go
text: SA1019
- linters:
- staticcheck
path: pkg/cosign/verifiers.go
text: SA1019
- linters:
- staticcheck
path: pkg/policy/attestation
text: SA1019
- linters:
- staticcheck
path: cmd/cosign/cli/attest/attest_blob_test.go
text: SA1019
- linters:
- staticcheck
path: cmd/cosign/cli/verify/verify.go
text: SA1019
paths:
- third_party$
- builtin$
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@

# This is used to we scrap the go version and use in CI to get the latest go version
# and we use dependabot to keep the go version up to date
FROM golang:1.26.3
FROM golang:1.26.4
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/sigstore/cosign/v2

go 1.26.3
go 1.26.4

require (
cuelang.org/go v0.14.1
Expand Down
2 changes: 1 addition & 1 deletion test/fakeoidc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/sigstore/cosign/test/fakeoidc

go 1.26.3
go 1.26.4

require github.com/go-jose/go-jose/v4 v4.0.5

Expand Down
Loading