diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index fedccad..121ac1a 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.24.0 + image: golang:1.24.1 commands: - gofmt -l -s . when: - event: [push, manual] - name: vuln-check - image: golang:1.24.0 + image: golang:1.24.1 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index a3ab16e..b6d314c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.0-bookworm AS build +FROM golang:1.24.1-bookworm AS build # Create build workspace folder WORKDIR /workspace