diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index bed2eb9..b7ecbce 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 - 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/.woodpecker/.test.yaml b/.woodpecker/.test.yaml index 7542ec3..3e3bdd8 100644 --- a/.woodpecker/.test.yaml +++ b/.woodpecker/.test.yaml @@ -1,6 +1,6 @@ steps: - name: gotest - image: golang:1.24.2 + image: golang:1.24.3 commands: - go test ./... when: diff --git a/Dockerfile b/Dockerfile index 9a5d375..d9e0134 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 9dd5fc5..c1e04f9 100644 --- a/go.mod +++ b/go.mod @@ -2,7 +2,7 @@ module git.ar21.de/yolokube/grafana-backuper go 1.23.0 -toolchain go1.24.2 +toolchain go1.24.3 require ( github.com/ProtonMail/go-crypto v1.2.0