diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index c4f1dc3..501a8b6 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.22.5 + image: golang:1.23.4 commands: - gofmt -l -s . when: - event: push - name: vuln-check - image: golang:1.22.5 + image: golang:1.23.4 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/.woodpecker/.test.yaml b/.woodpecker/.test.yaml index 226568d..f385837 100644 --- a/.woodpecker/.test.yaml +++ b/.woodpecker/.test.yaml @@ -1,6 +1,6 @@ steps: - name: gotest - image: golang:1.22.5 + image: golang:1.23.4 commands: - go test ./... when: diff --git a/Dockerfile b/Dockerfile index e304ddb..8a7e6bc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.5-bookworm AS build +FROM golang:1.23.4-bookworm AS build # Create build workspace folder WORKDIR /workspace