Skip to content

Commit 92ddde3

Browse files
Bump github.com/ossf/scorecard/v5 from v5.0.0-rc1 to v5.0.0-rc2 (#1374)
Signed-off-by: Spencer Schrock <[email protected]>
1 parent 6c55905 commit 92ddde3

File tree

4 files changed

+93
-92
lines changed

4 files changed

+93
-92
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# NOTE: Keep this in sync with go.mod for ossf/scorecard.
2-
LDFLAGS=-X sigs.k8s.io/release-utils/version.gitVersion=v5.0.0-rc1 -X sigs.k8s.io/release-utils/version.gitCommit=0b9dfb656f1796c7c693ad74f5193657b6a81e0b -w -extldflags \"-static\"
2+
LDFLAGS=-X sigs.k8s.io/release-utils/version.gitVersion=v5.0.0-rc2 -X sigs.k8s.io/release-utils/version.gitCommit=6b5cb27cd011f6f3657e703b28ea824b9eae7552 -w -extldflags \"-static\"
33

44
build: ## Runs go build on repo
55
# Run go build and generate scorecard executable

entrypoint/entrypoint.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func New() (*cobra.Command, error) {
8484
// users were having action failures due to secondary rate limits causing checks to fail
8585
scorecardRunE := actionCmd.RunE
8686
actionCmd.RunE = func(cmd *cobra.Command, args []string) error {
87-
if err := scorecardRunE(cmd, args); err != nil && !errors.Is(err, sce.ErrorCheckRuntime) {
87+
if err := scorecardRunE(cmd, args); err != nil && !errors.Is(err, sce.ErrCheckRuntime) {
8888
return err
8989
}
9090
return nil

go.mod

+27-27
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ require (
66
github.com/caarlos0/env/v6 v6.10.1
77
github.com/google/go-cmp v0.6.0
88
github.com/google/go-github/v46 v46.0.0
9-
github.com/ossf/scorecard/v5 v5.0.0-rc1
9+
github.com/ossf/scorecard/v5 v5.0.0-rc2
1010
github.com/sigstore/cosign/v2 v2.2.4
1111
github.com/spf13/cobra v1.8.0
1212
golang.org/x/net v0.25.0
1313
)
1414

1515
require (
1616
cloud.google.com/go v0.112.2 // indirect
17-
cloud.google.com/go/auth v0.2.2 // indirect
18-
cloud.google.com/go/auth/oauth2adapt v0.2.1 // indirect
17+
cloud.google.com/go/auth v0.4.0 // indirect
18+
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
1919
cloud.google.com/go/compute/metadata v0.3.0 // indirect
20-
cloud.google.com/go/iam v1.1.7 // indirect
20+
cloud.google.com/go/iam v1.1.8 // indirect
2121
cloud.google.com/go/storage v1.40.0 // indirect
2222
dario.cat/mergo v1.0.0 // indirect
23-
deps.dev/api/v3 v3.0.0-20240411010756-f6f382da6e02 // indirect
23+
deps.dev/api/v3 v3.0.0-20240503042720-6166138ce783 // indirect
2424
filippo.io/edwards25519 v1.1.0 // indirect
2525
github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/alibabacloudsdkgo/helper v0.2.0 // indirect
2626
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect
@@ -75,21 +75,21 @@ require (
7575
github.com/buildkite/interpolate v0.0.0-20200526001904-07f35b4ae251 // indirect
7676
github.com/chrismellard/docker-credential-acr-env v0.0.0-20230304212654-82a0ddb27589 // indirect
7777
github.com/clbanning/mxj/v2 v2.7.0 // indirect
78-
github.com/cloudflare/circl v1.3.7 // indirect
78+
github.com/cloudflare/circl v1.3.8 // indirect
7979
github.com/common-nighthawk/go-figure v0.0.0-20210622060536-734e95fb86be // indirect
8080
github.com/containerd/stargz-snapshotter/estargz v0.15.1 // indirect
8181
github.com/containerd/typeurl/v2 v2.1.1 // indirect
8282
github.com/coreos/go-oidc/v3 v3.10.0 // indirect
8383
github.com/cyberphone/json-canonicalization v0.0.0-20231011164504-785e29786b46 // indirect
84-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
84+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
8585
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
8686
github.com/dghubble/trie v0.1.0 // indirect
8787
github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352 // indirect
8888
github.com/digitorus/timestamp v0.0.0-20231217203849-220c5c2851b7 // indirect
8989
github.com/dimchansky/utfbom v1.1.1 // indirect
90-
github.com/docker/cli v26.1.0+incompatible // indirect
90+
github.com/docker/cli v26.1.1+incompatible // indirect
9191
github.com/docker/distribution v2.8.3+incompatible // indirect
92-
github.com/docker/docker v26.1.0+incompatible // indirect
92+
github.com/docker/docker v26.1.1+incompatible // indirect
9393
github.com/docker/docker-credential-helpers v0.8.1 // indirect
9494
github.com/dustin/go-humanize v1.0.1 // indirect
9595
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
@@ -135,7 +135,7 @@ require (
135135
github.com/google/uuid v1.6.0 // indirect
136136
github.com/google/wire v0.6.0 // indirect
137137
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
138-
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
138+
github.com/googleapis/gax-go/v2 v2.12.4 // indirect
139139
github.com/h2non/filetype v1.1.3 // indirect
140140
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
141141
github.com/hashicorp/go-retryablehttp v0.7.5 // indirect
@@ -145,7 +145,7 @@ require (
145145
github.com/in-toto/in-toto-golang v0.9.0 // indirect
146146
github.com/inconshreveable/mousetrap v1.1.0 // indirect
147147
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
148-
github.com/jedib0t/go-pretty/v6 v6.5.8 // indirect
148+
github.com/jedib0t/go-pretty/v6 v6.5.9 // indirect
149149
github.com/jedisct1/go-minisign v0.0.0-20230811132847-661be99b8267 // indirect
150150
github.com/jmespath/go-jmespath v0.4.0 // indirect
151151
github.com/josharian/intern v1.0.0 // indirect
@@ -161,7 +161,7 @@ require (
161161
github.com/miekg/pkcs11 v1.1.1 // indirect
162162
github.com/mitchellh/go-homedir v1.1.0 // indirect
163163
github.com/mitchellh/mapstructure v1.5.0 // indirect
164-
github.com/moby/buildkit v0.13.1 // indirect
164+
github.com/moby/buildkit v0.13.2 // indirect
165165
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
166166
github.com/modern-go/reflect2 v1.0.2 // indirect
167167
github.com/mozillazg/docker-credential-acr-helper v0.3.0 // indirect
@@ -190,7 +190,7 @@ require (
190190
github.com/segmentio/ksuid v1.0.4 // indirect
191191
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
192192
github.com/shibumi/go-pathspec v1.3.0 // indirect
193-
github.com/shurcooL/githubv4 v0.0.0-20240120211514-18a1ae0e79dc // indirect
193+
github.com/shurcooL/githubv4 v0.0.0-20240429030203-be2daab69064 // indirect
194194
github.com/shurcooL/graphql v0.0.0-20230722043721-ed46e5a46466 // indirect
195195
github.com/sigstore/fulcio v1.4.5 // indirect
196196
github.com/sigstore/rekor v1.3.6 // indirect
@@ -215,38 +215,38 @@ require (
215215
github.com/tjfoc/gmsm v1.4.1 // indirect
216216
github.com/transparency-dev/merkle v0.0.2 // indirect
217217
github.com/vbatts/tar-split v0.11.5 // indirect
218-
github.com/xanzy/go-gitlab v0.103.0 // indirect
218+
github.com/xanzy/go-gitlab v0.104.1 // indirect
219219
github.com/xanzy/ssh-agent v0.3.3 // indirect
220220
github.com/zeebo/errs v1.3.0 // indirect
221221
go.mongodb.org/mongo-driver v1.14.0 // indirect
222222
go.opencensus.io v0.24.0 // indirect
223-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.50.0 // indirect
224-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.50.0 // indirect
225-
go.opentelemetry.io/otel v1.25.0 // indirect
226-
go.opentelemetry.io/otel/metric v1.25.0 // indirect
227-
go.opentelemetry.io/otel/trace v1.25.0 // indirect
223+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.51.0 // indirect
224+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.51.0 // indirect
225+
go.opentelemetry.io/otel v1.26.0 // indirect
226+
go.opentelemetry.io/otel/metric v1.26.0 // indirect
227+
go.opentelemetry.io/otel/trace v1.26.0 // indirect
228228
go.step.sm/crypto v0.44.2 // indirect
229229
go.uber.org/multierr v1.11.0 // indirect
230230
go.uber.org/zap v1.27.0 // indirect
231231
gocloud.dev v0.37.0 // indirect
232232
golang.org/x/crypto v0.23.0 // indirect
233-
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
233+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
234234
golang.org/x/mod v0.17.0 // indirect
235-
golang.org/x/oauth2 v0.19.0 // indirect
235+
golang.org/x/oauth2 v0.20.0 // indirect
236236
golang.org/x/sync v0.7.0 // indirect
237237
golang.org/x/sys v0.20.0 // indirect
238238
golang.org/x/term v0.20.0 // indirect
239239
golang.org/x/text v0.15.0 // indirect
240240
golang.org/x/time v0.5.0 // indirect
241-
golang.org/x/tools v0.20.0 // indirect
241+
golang.org/x/tools v0.21.0 // indirect
242242
golang.org/x/vuln v1.1.0 // indirect
243243
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
244-
google.golang.org/api v0.176.0 // indirect
245-
google.golang.org/genproto v0.0.0-20240415180920-8c6c420018be // indirect
246-
google.golang.org/genproto/googleapis/api v0.0.0-20240415180920-8c6c420018be // indirect
247-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect
244+
google.golang.org/api v0.178.0 // indirect
245+
google.golang.org/genproto v0.0.0-20240506185236-b8a5c65736ae // indirect
246+
google.golang.org/genproto/googleapis/api v0.0.0-20240506185236-b8a5c65736ae // indirect
247+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240506185236-b8a5c65736ae // indirect
248248
google.golang.org/grpc v1.63.2 // indirect
249-
google.golang.org/protobuf v1.33.0 // indirect
249+
google.golang.org/protobuf v1.34.1 // indirect
250250
gopkg.in/go-jose/go-jose.v2 v2.6.3 // indirect
251251
gopkg.in/inf.v0 v0.9.1 // indirect
252252
gopkg.in/ini.v1 v1.67.0 // indirect

0 commit comments

Comments
 (0)