Skip to content

Commit 6f124a9

Browse files
authored
fix vuln (#278)
1 parent 79c237c commit 6f124a9

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

charts/metrics-agent/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ type: application
1414

1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
17-
version: 2.11.33
17+
version: 2.11.34
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application.
21-
appVersion: 2.11.33
21+
appVersion: 2.11.34

charts/metrics-agent/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pollInterval: 180
2424

2525
image:
2626
name: cloudability/metrics-agent
27-
tag: 2.11.33
27+
tag: 2.11.34
2828
pullPolicy: Always
2929

3030
imagePullSecrets: []

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ require (
8888
replace (
8989
github.com/docker/distribution => github.com/docker/distribution v2.8.3+incompatible
9090
github.com/docker/docker => github.com/docker/docker v25.0.5+incompatible
91+
github.com/hashicorp/consul/api => github.com/hashicorp/consul/api v1.30.0
9192

9293
github.com/mattn/go-sqlite3 => github.com/mattn/go-sqlite3 v1.14.18
9394
github.com/opencontainers/runc => github.com/opencontainers/runc v1.1.14

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package version
22

33
// VERSION is the current version of the agent
4-
var VERSION = "2.11.33"
4+
var VERSION = "2.11.34"

0 commit comments

Comments
 (0)