Update golang Docker tag to v1.24
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-02-12 19:04:04 +00:00
parent 37682d66c4
commit 66255472f0
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
steps:
test:
image: golang:1.23
image: golang:1.24
commands:
- go test ./...
build:

View File

@@ -1,4 +1,4 @@
FROM golang:1.23
FROM golang:1.24
WORKDIR /src
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -o server ./cmd/serve