diff --git a/.woodpecker/.lint.yaml b/.woodpecker/.lint.yaml index a76347a..d891525 100644 --- a/.woodpecker/.lint.yaml +++ b/.woodpecker/.lint.yaml @@ -1,12 +1,12 @@ steps: - name: gofmt - image: golang:1.24.1 + image: golang:1.24.2 commands: - gofmt -l -s . when: - event: push - name: vuln-check - image: golang:1.24.1 + image: golang:1.24.2 commands: - go install golang.org/x/vuln/cmd/govulncheck@latest - govulncheck ./... diff --git a/.woodpecker/.test.yaml b/.woodpecker/.test.yaml index e8bb521..7542ec3 100644 --- a/.woodpecker/.test.yaml +++ b/.woodpecker/.test.yaml @@ -1,6 +1,6 @@ steps: - name: gotest - image: golang:1.24.1 + image: golang:1.24.2 commands: - go test ./... when: diff --git a/Dockerfile b/Dockerfile index d69dbb5..9a5d375 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.24.1-bookworm AS build +FROM golang:1.24.2-bookworm AS build # Create build workspace folder WORKDIR /workspace diff --git a/go.mod b/go.mod index b69ad4d..68cf4cf 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.1 +toolchain go1.24.2 require ( github.com/ProtonMail/go-crypto v1.1.6