fix: upgrade xgo docker image everywhere

This commit is contained in:
kolaente 2024-11-05 15:03:14 +01:00
parent f826fb9a91
commit d6194b8f10
No known key found for this signature in database
GPG Key ID: F40E70337AB24C9B
2 changed files with 7 additions and 7 deletions

View File

@ -626,7 +626,7 @@ steps:
depends_on: [ generate-config-yaml ]
- name: before-static-build
image: techknowlogick/xgo:go-1.22.x
image: techknowlogick/xgo:go-1.23.x
pull: always
commands:
- export PATH=$PATH:$GOPATH/bin
@ -635,7 +635,7 @@ steps:
depends_on: [ fetch-tags, mage ]
- name: static-build-windows
image: techknowlogick/xgo:go-1.22.x
image: techknowlogick/xgo:go-1.23.x
pull: always
environment:
# This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why.
@ -651,7 +651,7 @@ steps:
- frontend-build
- name: static-build-linux
image: techknowlogick/xgo:go-1.22.x
image: techknowlogick/xgo:go-1.23.x
pull: always
environment:
# This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why.
@ -667,7 +667,7 @@ steps:
- frontend-build
- name: static-build-darwin
image: techknowlogick/xgo:go-1.22.x
image: techknowlogick/xgo:go-1.23.x
pull: always
environment:
# This path does not exist. However, when we set the gopath to /go, the build fails. Not sure why.
@ -693,7 +693,7 @@ steps:
- ./mage-static release:compress
- name: after-build-static
image: techknowlogick/xgo:go-1.22.x
image: techknowlogick/xgo:go-1.23.x
pull: always
depends_on:
- after-build-compress
@ -1400,6 +1400,6 @@ steps:
- failure
---
kind: signature
hmac: ae4047f8bfd7331febeb19ac7f572892dc8e3ea79f0bd8cad501e903c79dd919
hmac: 14968b058e6d28fa78d2329672bb46b401822543171ca4bf524ec5f7ed7fa443
...

View File

@ -13,7 +13,7 @@ RUN corepack enable && \
pnpm install && \
pnpm run build
FROM --platform=$BUILDPLATFORM techknowlogick/xgo:go-1.22.x AS apibuilder
FROM --platform=$BUILDPLATFORM techknowlogick/xgo:go-1.23.x AS apibuilder
RUN go install github.com/magefile/mage@latest && \
mv /go/bin/mage /usr/local/go/bin