Skip to content

Commit

Permalink
Overwrite image deps tags by default to automatically patch CVEs (#4623)
Browse files Browse the repository at this point in the history
* Overwrite image deps tags by default to automatically patch CVEs
  • Loading branch information
sgalsaleh authored May 15, 2024
1 parent 710df61 commit 7f46d9c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/image-deps-updater.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
overwrite:
description: 'Overwrite the existing image tags'
required: false
default: 'false'
default: 'true'
jobs:
build-3rd-party-images:
runs-on: ubuntu-20.04
Expand Down
4 changes: 2 additions & 2 deletions .image.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
MINIO_TAG='0.20240510.014138-r0'
RQLITE_TAG='8.24.7-r0'
DEX_TAG='2.39.1-r2'
SCHEMAHERO_TAG='0.17.7'
LVP_TAG='v0.6.2'
SCHEMAHERO_TAG='0.17.8'
LVP_TAG='v0.6.3'
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CURRENT_USER := $(if $(GITHUB_USER),$(GITHUB_USER),$(shell id -u -n))
MINIO_TAG ?= 0.20240510.014138-r0
RQLITE_TAG ?= 8.24.7-r0
DEX_TAG ?= 2.39.1-r2
LVP_TAG ?= v0.6.2
LVP_TAG ?= v0.6.3

define sendMetrics
@if [ -z "${PROJECT_NAME}" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion migrations/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SHELL:=/bin/bash
SCHEMAHERO_TAG ?= 0.17.7
SCHEMAHERO_TAG ?= 0.17.8

build_schema:
docker build --pull --build-arg SCHEMAHERO_TAG=${SCHEMAHERO_TAG} -f deploy/Dockerfile -t ${IMAGE} .
Expand Down
4 changes: 2 additions & 2 deletions pkg/image/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ const (
Minio = "kotsadm/minio:0.20240510.014138-r0"
Rqlite = "kotsadm/rqlite:8.24.7-r0"
Dex = "kotsadm/dex:2.39.1-r2"
Schemahero = "schemahero/schemahero:0.17.7"
Lvp = "replicated/local-volume-provider:v0.6.2"
Schemahero = "schemahero/schemahero:0.17.8"
Lvp = "replicated/local-volume-provider:v0.6.3"
)

0 comments on commit 7f46d9c

Please sign in to comment.