diff --git a/.woodpecker/pre-commit.yaml b/.woodpecker/pre-commit.yaml index 7748655..2dd88b8 100644 --- a/.woodpecker/pre-commit.yaml +++ b/.woodpecker/pre-commit.yaml @@ -3,7 +3,7 @@ when: steps: - name: pre-commit - image: golang:1.25-alpine + image: golang:1.25 commands: - test -z "$(gofmt -l .)" - go vet ./... diff --git a/.woodpecker/test.yaml b/.woodpecker/test.yaml index b423834..7bffc3e 100644 --- a/.woodpecker/test.yaml +++ b/.woodpecker/test.yaml @@ -3,6 +3,6 @@ when: steps: - name: test - image: golang:1.25-alpine + image: golang:1.25 commands: - go test -race -count=1 ./pkg/... ./internal/...