Merge pull request #220 from stefanprodan/go1.19

Build with Go 1.19
This commit is contained in:
Stefan Prodan
2022-09-29 12:31:39 +03:00
committed by GitHub
5 changed files with 8 additions and 4 deletions
+4
View File
@@ -17,6 +17,10 @@ jobs:
- uses: actions/checkout@v3
- uses: sigstore/cosign-installer@main
- uses: fluxcd/flux2/action@main
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.19.x
- name: Setup Helm
uses: ./.github/actions/helm
with:
+1 -1
View File
@@ -21,7 +21,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.18.x
go-version: 1.19.x
- name: Setup CUE
uses: cue-lang/setup-cue@main
- name: Run unit tests
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.18-alpine as builder
FROM golang:1.19-alpine as builder
ARG REVISION
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.18
FROM golang:1.19
WORKDIR /workspace
+1 -1
View File
@@ -1,4 +1,4 @@
ARG GO_VERSION=1.18
ARG GO_VERSION=1.19
ARG XX_VERSION=1.1.0
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx