Skip to content
This repository was archived by the owner on Mar 10, 2025. It is now read-only.

Commit 7ce370a

Browse files
chore(deps): update all dependencies
1 parent c96ef35 commit 7ce370a

File tree

4 files changed

+36
-489
lines changed

4 files changed

+36
-489
lines changed

.github/workflows/artifacts.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
labels: ${{ steps.meta.outputs.labels }}
6464

6565
- name: Run Trivy vulnerability scanner
66-
uses: aquasecurity/trivy-action@0.9.1
66+
uses: aquasecurity/trivy-action@0.29.0
6767
with:
6868
image-ref: "ghcr.io/${{ github.repository_owner }}/config-reloader:${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}"
6969
format: "sarif"

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.1 as builder
1+
FROM golang:1.23.3 as builder
22

33
WORKDIR /workspace
44

go.mod

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ module github.com/banzaicloud/config-reloader
33
go 1.23.1
44

55
require (
6-
github.com/fsnotify/fsnotify v1.5.4
7-
github.com/prometheus/client_golang v1.13.0
6+
github.com/fsnotify/fsnotify v1.8.0
7+
github.com/prometheus/client_golang v1.20.5
88
)
99

1010
require (
1111
github.com/beorn7/perks v1.0.1 // indirect
12-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
13-
github.com/golang/protobuf v1.5.2 // indirect
14-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
15-
github.com/prometheus/client_model v0.2.0 // indirect
16-
github.com/prometheus/common v0.37.0 // indirect
17-
github.com/prometheus/procfs v0.8.0 // indirect
18-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
19-
google.golang.org/protobuf v1.28.1 // indirect
12+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
13+
github.com/klauspost/compress v1.17.9 // indirect
14+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
15+
github.com/prometheus/client_model v0.6.1 // indirect
16+
github.com/prometheus/common v0.55.0 // indirect
17+
github.com/prometheus/procfs v0.15.1 // indirect
18+
golang.org/x/sys v0.22.0 // indirect
19+
google.golang.org/protobuf v1.34.2 // indirect
2020
)

0 commit comments

Comments
 (0)