diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index ef900fd8..7d0330c9 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.3-r0" + LIBCRYPTO_VERSION: "3.1.4-r0" jobs: test: diff --git a/.github/workflows/release-runners.yaml b/.github/workflows/release-runners.yaml index 45395e1e..296dfe36 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.3-r0" + LIBCRYPTO_VERSION: "3.1.4-r0" jobs: release-base: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 80643ccb..f1a5e260 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ on: permissions: contents: read # for actions/checkout to fetch code - LIBCRYPTO_VERSION: "3.1.3-r0" + LIBCRYPTO_VERSION: "3.1.4-r0" env: CONTROLLER: ${{ github.event.repository.name }} diff --git a/Makefile b/Makefile index c44984d0..bc26ed77 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.3-r0 +LIBCRYPTO_VERSION ?= 3.1.4-r0 # source controller version SOURCE_VER ?= v1.0.0-rc.1 diff --git a/Tiltfile b/Tiltfile index 5cf902e1..a854f3d1 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.3-r0" +LIBCRYPTO_VERSION = "3.1.4-r0" if os.path.exists('Tiltfile.local'): include('Tiltfile.local')