Compare commits

..

No commits in common. "6a98232335085868b1961d522fba6e9254778c2a" and "f349b879f9ec3dde0f6ca34e70caae7e09a2d40a" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

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

View file

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