diff --git a/.drone.yml b/.drone.yml index 2b4555b..ce347d9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,7 +3,7 @@ name: build steps: - name: gofmt - image: golang:1.23.1 + image: golang:1.23.0 commands: - gofmt -l -s . when: @@ -17,7 +17,7 @@ steps: event: - push - name: vuln-check - image: golang:1.23.1 + image: golang:1.23.0 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/Dockerfile b/Dockerfile index 65af904..2a15b90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.23.1-bookworm AS build +FROM golang:1.23.0-bookworm AS build # Create build workspace folder WORKDIR /workspace