Compare commits

...

2 commits

Author SHA1 Message Date
429a1195f2
chore(deps): update golang docker tag to v1.24.1
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
2025-03-04 22:05:48 +00:00
f1620b1e33
fix(deps): update module golang.org/x/net to v0.36.0
All checks were successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/deploy Pipeline was successful
2025-03-04 21:05:59 +00:00
5 changed files with 7 additions and 7 deletions

View file

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

View file

@ -1,6 +1,6 @@
steps:
- name: gotest
image: golang:1.24.0
image: golang:1.24.1
commands:
- go test ./...
when:

View file

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

2
go.mod
View file

@ -13,7 +13,7 @@ require (
github.com/spf13/pflag v1.0.6
github.com/spf13/viper v1.19.0
github.com/stretchr/testify v1.10.0
golang.org/x/net v0.35.0
golang.org/x/net v0.36.0
)
require (

4
go.sum
View file

@ -129,8 +129,8 @@ golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0Y
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa h1:ELnwvuAXPNtPk1TJRuGkI9fDTwym6AYBu0qzT8AcHdI=
golang.org/x/exp v0.0.0-20240808152545-0cdaa3abc0fa/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.35.0 h1:T5GQRQb2y08kTAByq9L4/bz8cipCdA8FbRTXewonqY8=
golang.org/x/net v0.35.0/go.mod h1:EglIi67kWsHKlRzzVMUD93VMSWGFOMSZgxFjparz1Qk=
golang.org/x/net v0.36.0 h1:vWF2fRbw4qslQsQzgFqZff+BItCvGFQqKzKIzx1rmoA=
golang.org/x/net v0.36.0/go.mod h1:bFmbeoIPfrw4sMHNhb4J9f6+tPziuGjq7Jk/38fxi1I=
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=