Skip to content

Commit

Permalink
Upgrade libcrypto to 3.3.2-r4 and alpine to 3.21
Browse files Browse the repository at this point in the history
  • Loading branch information
akselleirv committed Jan 13, 2025
1 parent 961c767 commit 74ddf69
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

env:
CONTROLLER: ${{ github.event.repository.name }}
LIBCRYPTO_VERSION: "3.3.2-r0"
LIBCRYPTO_VERSION: "3.3.2-r4"

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-runners.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
env:
VERSION: ${{ github.event.inputs.version }}
BUILD_DATE: ${{ github.event.inputs.build_date }}
LIBCRYPTO_VERSION: "3.3.2-r0"
LIBCRYPTO_VERSION: "3.3.2-r4"

jobs:
release-base:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

env:
CONTROLLER: ${{ github.event.repository.name }}
LIBCRYPTO_VERSION: "3.3.2-r0"
LIBCRYPTO_VERSION: "3.3.2-r4"

jobs:
build-push:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \
-ldflags "-X main.BuildSHA='${BUILD_SHA}' -X main.BuildVersion='${BUILD_VERSION}'" \
-a -o tofu-controller ./cmd/manager

FROM alpine:3.20
FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20
FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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-r0
LIBCRYPTO_VERSION ?= 3.3.2-r4

# source controller version
SOURCE_VER ?= v1.0.0-rc.1
Expand Down
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -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-r0"
LIBCRYPTO_VERSION = "3.3.2-r4"

if os.path.exists('Tiltfile.local'):
include('Tiltfile.local')
Expand Down
2 changes: 1 addition & 1 deletion planner.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \
-o branch-planner \
./cmd/branch-planner

FROM alpine:3.20
FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down
2 changes: 1 addition & 1 deletion planner.Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20
FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down
2 changes: 1 addition & 1 deletion runner-base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=${TARGETARCH} \
-o tf-runner \
./cmd/runner/main.go

FROM alpine:3.20
FROM alpine:3.21

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down
2 changes: 1 addition & 1 deletion runner.Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.20 as base
FROM alpine:3.21 as base

LABEL org.opencontainers.image.source="https://github.com/flux-iac/tofu-controller"

Expand Down

0 comments on commit 74ddf69

Please sign in to comment.