Skip to content

Commit 7f46d9c

Browse files
authored
Overwrite image deps tags by default to automatically patch CVEs (#4623)
* Overwrite image deps tags by default to automatically patch CVEs
1 parent 710df61 commit 7f46d9c

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/image-deps-updater.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
overwrite:
99
description: 'Overwrite the existing image tags'
1010
required: false
11-
default: 'false'
11+
default: 'true'
1212
jobs:
1313
build-3rd-party-images:
1414
runs-on: ubuntu-20.04

.image.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
MINIO_TAG='0.20240510.014138-r0'
55
RQLITE_TAG='8.24.7-r0'
66
DEX_TAG='2.39.1-r2'
7-
SCHEMAHERO_TAG='0.17.7'
8-
LVP_TAG='v0.6.2'
7+
SCHEMAHERO_TAG='0.17.8'
8+
LVP_TAG='v0.6.3'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CURRENT_USER := $(if $(GITHUB_USER),$(GITHUB_USER),$(shell id -u -n))
33
MINIO_TAG ?= 0.20240510.014138-r0
44
RQLITE_TAG ?= 8.24.7-r0
55
DEX_TAG ?= 2.39.1-r2
6-
LVP_TAG ?= v0.6.2
6+
LVP_TAG ?= v0.6.3
77

88
define sendMetrics
99
@if [ -z "${PROJECT_NAME}" ]; then \

migrations/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SHELL:=/bin/bash
2-
SCHEMAHERO_TAG ?= 0.17.7
2+
SCHEMAHERO_TAG ?= 0.17.8
33

44
build_schema:
55
docker build --pull --build-arg SCHEMAHERO_TAG=${SCHEMAHERO_TAG} -f deploy/Dockerfile -t ${IMAGE} .

pkg/image/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ const (
88
Minio = "kotsadm/minio:0.20240510.014138-r0"
99
Rqlite = "kotsadm/rqlite:8.24.7-r0"
1010
Dex = "kotsadm/dex:2.39.1-r2"
11-
Schemahero = "schemahero/schemahero:0.17.7"
12-
Lvp = "replicated/local-volume-provider:v0.6.2"
11+
Schemahero = "schemahero/schemahero:0.17.8"
12+
Lvp = "replicated/local-volume-provider:v0.6.3"
1313
)

0 commit comments

Comments
 (0)