diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index d1015d6..8426443 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.24.2 + image: golang:1.24.3 commands: - gofmt -l -s . when: - event: [push, manual] - name: vuln-check - image: golang:1.24.2 + image: golang:1.24.3 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 182b103..3213d4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.2-bookworm AS build +FROM golang:1.24.3-bookworm AS build # Create build workspace folder WORKDIR /workspace diff --git a/go.mod b/go.mod index a4ed8db..8c3b32c 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module git.ar21.de/yolokube/go-traefik-certmanager go 1.24.0 -toolchain go1.24.2 +toolchain go1.24.3 require ( github.com/alecthomas/kong v1.10.0