From a033f1e4a950fea3fb30211f6058a7ea9b088c22 Mon Sep 17 00:00:00 2001 From: Victoria Nadasdi Date: Mon, 22 Jan 2024 22:18:02 +0100 Subject: [PATCH] chore(deps): bump libcrypto and libssl version Signed-off-by: Victoria Nadasdi --- .github/workflows/build-and-publish.yaml | 2 +- .github/workflows/release-runners.yaml | 2 +- .github/workflows/release.yaml | 2 +- Makefile | 2 +- Tiltfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index faeb55218..66c0152ec 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -10,7 +10,7 @@ permissions: env: CONTROLLER: ${{ github.event.repository.name }} - LIBCRYPTO_VERSION: "3.1.4-r1" + LIBCRYPTO_VERSION: "3.1.4-r4" jobs: test: diff --git a/.github/workflows/release-runners.yaml b/.github/workflows/release-runners.yaml index b30196442..fc5f7a35c 100644 --- a/.github/workflows/release-runners.yaml +++ b/.github/workflows/release-runners.yaml @@ -18,7 +18,7 @@ permissions: env: VERSION: ${{ github.event.inputs.version }} BUILD_DATE: ${{ github.event.inputs.build_date }} - LIBCRYPTO_VERSION: "3.1.4-r1" + LIBCRYPTO_VERSION: "3.1.4-r4" jobs: release-base: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 29acd19b4..0fc7a7ace 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ permissions: env: CONTROLLER: ${{ github.event.repository.name }} - LIBCRYPTO_VERSION: "3.1.4-r1" + LIBCRYPTO_VERSION: "3.1.4-r4" jobs: build-push: diff --git a/Makefile b/Makefile index b34ef17f0..944e779fb 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ BUILD_VERSION ?= $(shell git describe --tags $$(git rev-list --tags --max-count= # - .github/workflows/release-runners.yaml # - .github/workflows/release.yaml # - Tiltfile -LIBCRYPTO_VERSION ?= 3.1.4-r1 +LIBCRYPTO_VERSION ?= 3.1.4-r4 # source controller version SOURCE_VER ?= v1.0.0-rc.1 diff --git a/Tiltfile b/Tiltfile index bb44e3cff..9e70a4036 100644 --- a/Tiltfile +++ b/Tiltfile @@ -8,7 +8,7 @@ tfNamespace = "terraform" buildSHA = str(local('git rev-parse --short HEAD')).rstrip('\n') buildVersionRef = str(local('git rev-list --tags --max-count=1')).rstrip('\n') buildVersion = str(local("git describe --tags ${buildVersionRef}")).rstrip('\n') -LIBCRYPTO_VERSION = "3.1.4-r1" +LIBCRYPTO_VERSION = "3.1.4-r4" if os.path.exists('Tiltfile.local'): include('Tiltfile.local')