Change golang version

This commit is contained in:
dragongoose 2023-07-04 21:03:12 -04:00
parent 4e89ba8637
commit 8e26a9fb5a
Signed by: dragongoose
GPG key ID: 50DB99B921579009
2 changed files with 3 additions and 3 deletions

View file

@ -1,11 +1,11 @@
pipeline:
build:
image: golang:1.17
image: docker.io/golang:latests
commands:
- go get
- go build
publish:
image: woodpeckerci/plugin-docker-buildx
image: docker.io/woodpeckerci/plugin-docker-buildx
settings:
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm64/v8,linux/ppc64le,linux/riscv64,linux/s390x
repo: codeberg.org/${CI_REPO_OWNER}/hello

View file

@ -1,4 +1,4 @@
FROM docker.io/golang:1.20.3 as builder
FROM docker.io/golang:latest as builder
# Create and change to the app directory.
WORKDIR /app