Update golang Docker tag to v1.23
Some checks are pending
ci/woodpecker/push/build Pipeline is pending
ci/woodpecker/push/lint Pipeline is pending
ci/woodpecker/push/release Pipeline is pending
ci/woodpecker/pr/build Pipeline is pending
ci/woodpecker/pr/lint Pipeline is pending
ci/woodpecker/pr/release Pipeline is pending

This commit is contained in:
Renovate bot 2024-08-13 20:40:07 +00:00
parent 05787c90aa
commit ce519892d9
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
steps:
lint:
image: golang:1.22
image: golang:1.23
commands:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- golangci-lint run

View file

@ -1,6 +1,6 @@
steps:
- name: Build
image: golang:1.22
image: golang:1.23
commands:
- go mod download
- CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-w -s" -o plakken-linux-amd64 # Enable static binary, target Linux, remove debug information and strip binary

View file

@ -1,5 +1,5 @@
# Build
FROM golang:1.22 AS build
FROM golang:1.23 AS build
WORKDIR /build