Rollback Go version to 1.19

This commit is contained in:
Lucas Fraguas 2024-01-09 11:07:56 -03:00
parent 87aaa79008
commit 5f47af88e7
No known key found for this signature in database
GPG Key ID: D346F879CF42A86D
2 changed files with 3 additions and 3 deletions

View File

@ -52,10 +52,10 @@ jobs:
uses: vazco/github-actions-branch-name@v1
id: branch
- name: Set up Go 1.21
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.21.x
go-version: 1.19.x
id: go
- name: Downloads golang mods

View File

@ -5,7 +5,7 @@ ARG RUNTIME_IMAGE=alpine:3.19
# cache sharing of the go mod download step.
# Go cross compilation is also faster than emulation the go compilation across
# multiple platforms.
FROM --platform=${BUILDPLATFORM} golang:1.21 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.19-buster AS builder
# Copy sources
WORKDIR $GOPATH/src/github.com/oauth2-proxy/oauth2-proxy