Skip to content

Commit df26138

Browse files
authored
Merge pull request #643 from hawksight/debian-trust-update
feat: Bump the ca-certificates package to 20230311+deb12u1
2 parents 7521f9d + ca1dc74 commit df26138

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

make/00_debian_bookworm_version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# WARNING: Changing this file triggers a build and release of the Debian trust package for Bookworm (Debian 12)
1616
#
1717
# This file is used to store the latest version of the debian trust package and the DEBIAN_BUNDLE_BOOKWORM_VERSION
18-
# variable is automatically updated by the `upgrade-debian-trust-package-version` target and cron GH action.
18+
# variable is automatically updated by the `upgrade-debian-trust-package-bookworm-version` target and cron GH action.
1919

20-
DEBIAN_BUNDLE_BOOKWORM_VERSION=20230311.0
20+
DEBIAN_BUNDLE_BOOKWORM_VERSION := 20230311+deb12u1.0
2121
DEBIAN_BUNDLE_BOOKWORM_SOURCE_IMAGE=docker.io/library/debian:12-slim

make/00_mod.mk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ go_package_debian_bookworm_mod_dir := ./trust-packages/debian
4747
go_package_debian_bookworm_ldflags :=
4848
oci_package_debian_bookworm_base_image_flavor := static
4949
oci_package_debian_bookworm_image_name := quay.io/jetstack/trust-pkg-debian-bookworm
50-
oci_package_debian_bookworm_image_tag := $(DEBIAN_BUNDLE_BOOKWORM_VERSION)
50+
# '+' characters are not valid in docker image names. Transform it to a '.' for images
51+
oci_package_debian_bookworm_image_tag := $(shell echo $(DEBIAN_BUNDLE_BOOKWORM_VERSION) | tr '+' '-')
5152
oci_package_debian_bookworm_image_name_development := cert-manager.local/trust-pkg-debian-bookworm
5253
debian_bookworm_package_layer := $(bin_dir)/scratch/debian-trust-package-bookworm
5354
oci_package_debian_bookworm_additional_layers += $(debian_bookworm_package_layer)

make/debian-trust-package-fetch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ fi
8888
target_ca_certificates_version="${TARGET_DEBIAN_BUNDLE_VERSION%.*}"
8989

9090
echo "+++ fetching latest version of ca-certificates package"
91+
echo "+++ target version of ca-certificates is '$target_ca_certificates_version'"
9192

9293
TMP_DIR=$(mktemp -d)
9394

0 commit comments

Comments
 (0)