File tree 3 files changed +21
-3
lines changed
3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 22
22
- name : Set up Go
23
23
uses : actions/setup-go@v5
24
24
with :
25
- go-version : ' 1.20 ' # This needs to be a string!
25
+ go-version : ' 1.23.2 ' # This needs to be a string!
26
26
27
27
- name : Login to GitHub Container Registry
28
28
uses : docker/login-action@v3
Original file line number Diff line number Diff line change @@ -281,6 +281,24 @@ docker_manifests:
281
281
push_flags :
282
282
- --insecure
283
283
284
+ - name_template : " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}"
285
+ image_templates :
286
+ - " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-arm64"
287
+ - " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:{{ .Version }}-amd64"
288
+ create_flags :
289
+ - --insecure
290
+ push_flags :
291
+ - --insecure
292
+
293
+ - name_template : " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest"
294
+ image_templates :
295
+ - " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-arm64"
296
+ - " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-color:latest-amd64"
297
+ create_flags :
298
+ - --insecure
299
+ push_flags :
300
+ - --insecure
301
+
284
302
- name_template : " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest"
285
303
image_templates :
286
304
- " {{ .Env.REGISTRY }}/{{ .Env.IMAGE_NAME }}-external-workload:latest-arm64"
Original file line number Diff line number Diff line change 1
1
module github.com/BuoyantIO/faces-demo/v2
2
2
3
- go 1.21
3
+ go 1.23
4
4
5
- toolchain go1.23.1
5
+ toolchain go1.23.2
6
6
7
7
require (
8
8
github.com/warthog618/gpiod v0.8.2
You can’t perform that action at this time.
0 commit comments