Compare commits

..

1 commit

Author SHA1 Message Date
24bb169b83
chore(deps): update dependency go to v1.24.3
Some checks failed
renovate/artifacts Artifact file update failure
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build unknown status
2025-05-06 18:05:30 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -1,12 +1,12 @@
steps:
- name: gofmt
image: golang:1.24.3
image: golang:1.24.2
commands:
- gofmt -l -s .
when:
- event: [push, manual]
- name: vuln-check
image: golang:1.24.3
image: golang:1.24.2
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...

View file

@ -1,4 +1,4 @@
FROM golang:1.24.3-bookworm AS build
FROM golang:1.24.2-bookworm AS build
# Create build workspace folder
WORKDIR /workspace