File tree Expand file tree Collapse file tree 8 files changed +14
-14
lines changed Expand file tree Collapse file tree 8 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -212,4 +212,4 @@ jobs:
212
212
213
213
- name : Collect diagnostics
214
214
if : ${{ failure() }}
215
- uses : chainguard-dev/actions/kind-diag@84c993eaf02da1c325854fb272a4df9184bd80fc # main
215
+ uses : chainguard-dev/actions/kind-diag@9ba949ac63357c725a9438f3e05a1e33d313498e # main
Original file line number Diff line number Diff line change 39
39
- name : golangci-lint
40
40
uses : golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
41
41
with :
42
- version : v1.59
42
+ version : v1.60
43
43
args : --timeout=5m
44
44
45
45
golangci-test-e2e :
58
58
- name : golangci-lint
59
59
uses : golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
60
60
with :
61
- version : v1.59
61
+ version : v1.60
62
62
args : --timeout=5m --build-tags e2e ./test
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151
151
152
152
- name : Collect diagnostics
153
153
if : ${{ failure() }}
154
- uses : chainguard-dev/actions/kind-diag@84c993eaf02da1c325854fb272a4df9184bd80fc # main
154
+ uses : chainguard-dev/actions/kind-diag@9ba949ac63357c725a9438f3e05a1e33d313498e # main
155
155
156
156
- name : Create vuln attestation for it
157
157
run : |
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ jobs:
174
174
175
175
- name : Collect diagnostics
176
176
if : ${{ failure() }}
177
- uses : chainguard-dev/actions/kind-diag@84c993eaf02da1c325854fb272a4df9184bd80fc # main
177
+ uses : chainguard-dev/actions/kind-diag@9ba949ac63357c725a9438f3e05a1e33d313498e # main
178
178
179
179
e2e-windows-powershell-tests :
180
180
name : Run PowerShell E2E tests
Original file line number Diff line number Diff line change 31
31
steps :
32
32
- name : Check Signature
33
33
run : |
34
- cosign verify ghcr.io/gythialy/golang-cross:v1.22.6 -0@sha256:34ba9945085680b8966b78929e3520478ec9ea38a315fa13d8d5e0ce6355d0d2 \
34
+ cosign verify ghcr.io/gythialy/golang-cross:v1.22.7 -0@sha256:cb23bfe5773191f1ccc9d60fb73392d5ffc87257e2e019ffe81edb8b352a5284 \
35
35
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
36
- --certificate-identity "https://github.com/gythialy/golang-cross/.github/workflows/release-golang-cross.yml@refs/tags/v1.22.6 -0"
36
+ --certificate-identity "https://github.com/gythialy/golang-cross/.github/workflows/release-golang-cross.yml@refs/tags/v1.22.7 -0"
37
37
env :
38
38
TUF_ROOT : /tmp
39
39
43
43
- check-signature
44
44
45
45
container :
46
- image : ghcr.io/gythialy/golang-cross:v1.22.6 -0@sha256:34ba9945085680b8966b78929e3520478ec9ea38a315fa13d8d5e0ce6355d0d2
46
+ image : ghcr.io/gythialy/golang-cross:v1.22.7 -0@sha256:cb23bfe5773191f1ccc9d60fb73392d5ffc87257e2e019ffe81edb8b352a5284
47
47
volumes :
48
48
- /usr:/host_usr
49
49
- /opt:/host_opt
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ func (p *HelpFlagPrinter) PrintHelpFlag(flag *flag.Flag) {
60
60
}
61
61
appendTabStr := strings .ReplaceAll (wrappedStr , "\n " , "\n \t " )
62
62
63
- fmt .Fprintf (p .out , appendTabStr + " \n \n " )
63
+ fmt .Fprintf (p .out , "%s \n \n ", appendTabStr )
64
64
}
65
65
66
66
// writeFlag will output the help flag based
Original file line number Diff line number Diff line change 1
1
module github.com/sigstore/cosign/v2
2
2
3
- go 1.22.6
3
+ go 1.22.7
4
4
5
5
require (
6
6
cuelang.org/go v0.9.2
Original file line number Diff line number Diff line change @@ -38,14 +38,14 @@ steps:
38
38
- TUF_ROOT=/tmp
39
39
args :
40
40
- ' verify'
41
- - ' ghcr.io/gythialy/golang-cross:v1.22.6 -0@sha256:34ba9945085680b8966b78929e3520478ec9ea38a315fa13d8d5e0ce6355d0d2 '
41
+ - ' ghcr.io/gythialy/golang-cross:v1.22.7 -0@sha256:cb23bfe5773191f1ccc9d60fb73392d5ffc87257e2e019ffe81edb8b352a5284 '
42
42
- ' --certificate-oidc-issuer'
43
43
- " https://token.actions.githubusercontent.com"
44
44
- ' --certificate-identity'
45
- - " https://github.com/gythialy/golang-cross/.github/workflows/release-golang-cross.yml@refs/tags/v1.22.6 -0"
45
+ - " https://github.com/gythialy/golang-cross/.github/workflows/release-golang-cross.yml@refs/tags/v1.22.7 -0"
46
46
47
47
# maybe we can build our own image and use that to be more in a safe side
48
- - name : ghcr.io/gythialy/golang-cross:v1.22.6 -0@sha256:34ba9945085680b8966b78929e3520478ec9ea38a315fa13d8d5e0ce6355d0d2
48
+ - name : ghcr.io/gythialy/golang-cross:v1.22.7 -0@sha256:cb23bfe5773191f1ccc9d60fb73392d5ffc87257e2e019ffe81edb8b352a5284
49
49
entrypoint : /bin/sh
50
50
dir : " go/src/sigstore/cosign"
51
51
env :
68
68
gcloud auth configure-docker \
69
69
&& make release
70
70
71
- - name : ghcr.io/gythialy/golang-cross:v1.22.6 -0@sha256:34ba9945085680b8966b78929e3520478ec9ea38a315fa13d8d5e0ce6355d0d2
71
+ - name : ghcr.io/gythialy/golang-cross:v1.22.7 -0@sha256:cb23bfe5773191f1ccc9d60fb73392d5ffc87257e2e019ffe81edb8b352a5284
72
72
entrypoint : ' bash'
73
73
dir : " go/src/sigstore/cosign"
74
74
env :
You can’t perform that action at this time.
0 commit comments