ci,containerfile: bump golang to 1.20.6
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
surtur 2023-08-03 14:36:18 +02:00
parent 9ac8810f67
commit 02ba8bc8a5
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI
2 changed files with 6 additions and 6 deletions

View File

@ -87,13 +87,13 @@ environment:
steps:
- name: pull
image: docker.io/library/golang:1.20.5-alpine3.18
image: docker.io/library/golang:1.20.6-alpine3.18
depends_on: [clone]
commands:
- go version
- name: go mod tidy
image: docker.io/library/golang:1.20.5-alpine3.18
image: docker.io/library/golang:1.20.6-alpine3.18
depends_on: [pull]
volumes:
- name: gopath
@ -106,7 +106,7 @@ steps:
- test -z "$(git diff-index HEAD :^package-lock.json)"
- name: go build
image: docker.io/library/golang:1.20.5-alpine3.18
image: docker.io/library/golang:1.20.6-alpine3.18
depends_on: [go mod tidy]
volumes:
- name: gopath
@ -118,7 +118,7 @@ steps:
- go build -v .
- name: go test
image: docker.io/library/golang:1.20.5-alpine3.18
image: docker.io/library/golang:1.20.6-alpine3.18
depends_on: [pull]
volumes:
- name: gopath
@ -146,7 +146,7 @@ node:
steps:
- name: golangci-lint
image: docker.io/library/golang:1.20.5-alpine3.18
image: docker.io/library/golang:1.20.6-alpine3.18
pull: always
environment:
CGO_ENABLED: 0

View File

@ -22,7 +22,7 @@ RUN tar xf /tmp/dhall.tar.bz2 \
&& time dhall --file /tmp/exampleConfig.dhall
FROM docker.io/library/golang:1.20.4-alpine3.17 as go-build
FROM docker.io/library/golang:1.20.6-alpine3.17 as go-build
ARG VERSION
ARG BUILD_DATE
ARG VCS_REF