Merge pull request #246 from stefanprodan/go-1.20

build: Update Go to 1.20
This commit is contained in:
Stefan Prodan
2023-02-03 12:57:39 +02:00
committed by GitHub
5 changed files with 6 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
go-version: 1.20.x
- name: Setup Helm
uses: azure/setup-helm@v3
with:

View File

@@ -27,7 +27,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
go-version: 1.20.x
- name: Setup kubectl
uses: azure/setup-kubectl@v3
with:

View File

@@ -1,4 +1,4 @@
FROM golang:1.19-alpine as builder
FROM golang:1.20-alpine as builder
ARG REVISION

View File

@@ -1,4 +1,4 @@
FROM golang:1.19
FROM golang:1.20
WORKDIR /workspace

View File

@@ -1,5 +1,5 @@
ARG GO_VERSION=1.19
ARG XX_VERSION=1.1.0
ARG GO_VERSION=1.20
ARG XX_VERSION=1.2.0
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx