Compare commits

...

2 commits

2 changed files with 4 additions and 4 deletions

View file

@ -1,19 +1,19 @@
steps:
- name: gofmt
image: golang:1.24.1
image: golang:1.24.2
commands:
- gofmt -l -s .
when:
- event: [push, manual]
- name: vuln-check
image: golang:1.24.1
image: golang:1.24.2
commands:
- go install golang.org/x/vuln/cmd/govulncheck@latest
- govulncheck ./...
when:
- event: [push, manual]
- name: golangci-linter
image: golangci/golangci-lint:v1.64.8
image: golangci/golangci-lint:v2.0.2
commands:
- golangci-lint run ./...
when:

View file

@ -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