5
5
6
6
jobs :
7
7
image-build-and-publish :
8
+ name : Build and Publish Main Image
8
9
runs-on : ubuntu-latest
9
10
permissions :
10
11
contents : write
50
51
uses : ko-build/setup-ko@d006021bd0c28d1ce33a07e7943d48b079944c8d # v0.9
51
52
52
53
- name : Install Cosign
53
- uses : sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
54
+ uses : sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
54
55
55
56
- name : Build and Push Image to GHCR
56
57
env :
84
85
fi
85
86
86
87
egress-proxy-image-build-and-publish :
88
+ name : Build and Publish Egress Proxy Image
87
89
runs-on : ubuntu-latest
88
90
permissions :
89
91
contents : write
@@ -147,7 +149,7 @@ jobs:
147
149
148
150
- name : Install Cosign
149
151
if : startsWith(github.ref, 'refs/tags/')
150
- uses : sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
152
+ uses : sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
151
153
152
154
- name : Sign container image
153
155
if : startsWith(github.ref, 'refs/tags/')
@@ -157,6 +159,7 @@ jobs:
157
159
cosign sign -y $BASE_REPO:latest
158
160
159
161
operator-image-build-and-publish :
162
+ name : Build and Publish Operator Image
160
163
runs-on : ubuntu-latest
161
164
permissions :
162
165
contents : write
@@ -178,7 +181,7 @@ jobs:
178
181
- name : Install Task
179
182
uses : arduino/setup-task@v2
180
183
with :
181
- version : 3.x
184
+ version : 3.44.1
182
185
repo-token : ${{ secrets.GITHUB_TOKEN }}
183
186
184
187
- name : Generate CRDs
@@ -211,7 +214,7 @@ jobs:
211
214
uses : ko-build/setup-ko@d006021bd0c28d1ce33a07e7943d48b079944c8d # v0.9
212
215
213
216
- name : Install Cosign
214
- uses : sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
217
+ uses : sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
215
218
216
219
- name : Build and Push Image to GHCR
217
220
env :
@@ -245,6 +248,7 @@ jobs:
245
248
fi
246
249
247
250
proxyrunner-image-build-and-publish :
251
+ name : Build and Publish Proxy Runner Image
248
252
runs-on : ubuntu-latest
249
253
permissions :
250
254
contents : write
@@ -290,7 +294,7 @@ jobs:
290
294
uses : ko-build/setup-ko@d006021bd0c28d1ce33a07e7943d48b079944c8d # v0.9
291
295
292
296
- name : Install Cosign
293
- uses : sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2
297
+ uses : sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
294
298
295
299
- name : Build and Push Image to GHCR
296
300
env :
@@ -321,4 +325,4 @@ jobs:
321
325
# Sign the latest tag if building from a tag
322
326
if [[ "${{ github.ref }}" == refs/tags/* ]]; then
323
327
cosign sign -y $BASE_REPO:latest
324
- fi
328
+ fi
0 commit comments