From 827878bb890e5b3cecd1697199f32e9eacf6c4cf Mon Sep 17 00:00:00 2001 From: Aksel Skaar Leirvaag Date: Thu, 13 Feb 2025 06:47:27 +0100 Subject: [PATCH] chore: bump libcrypto to 3.3.3-r0 --- .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 1b75dfc0..c662b80e 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.3.2-r4" + LIBCRYPTO_VERSION: "3.3.3-r0" jobs: test: diff --git a/.github/workflows/release-runners.yaml b/.github/workflows/release-runners.yaml index ddc724fb..82af3496 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.3.2-r4" + LIBCRYPTO_VERSION: "3.3.3-r0" jobs: release-base: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1acad469..c889e7c1 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.3.2-r4" + LIBCRYPTO_VERSION: "3.3.3-r0" jobs: build-push: diff --git a/Makefile b/Makefile index 47670474..f936ca4b 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.3.2-r4 +LIBCRYPTO_VERSION ?= 3.3.3-r0 # source controller version SOURCE_VER ?= v1.0.0-rc.1 diff --git a/Tiltfile b/Tiltfile index b848eec2..11c02f79 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.3.2-r4" +LIBCRYPTO_VERSION = "3.3.3-r0" if os.path.exists('Tiltfile.local'): include('Tiltfile.local')