Skip to content

Commit 67b859d

Browse files
authored
Merge branch 'main' into fix/airflow-symlink-acceptance
2 parents 223faae + 68a95e3 commit 67b859d

6 files changed

Lines changed: 14 additions & 13 deletions

File tree

.github/workflows/mirror.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV"
5858
5959
- name: Publish Container Image on oci.stackable.tech
60-
uses: stackabletech/actions/publish-image@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
60+
uses: stackabletech/actions/publish-image@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
6161
with:
6262
image-registry-uri: oci.stackable.tech
6363
image-registry-username: robot$sdp+github-action-build
@@ -84,7 +84,7 @@ jobs:
8484
echo "IMAGE_REPOSITORY=$(.scripts/get_repo_name.sh)" | tee -a "$GITHUB_ENV"
8585
8686
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
87-
uses: stackabletech/actions/publish-image-index-manifest@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
87+
uses: stackabletech/actions/publish-image-index-manifest@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
8888
with:
8989
image-registry-uri: oci.stackable.tech
9090
image-registry-username: robot$sdp+github-action-build

.github/workflows/pr_pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
persist-credentials: false
2020
fetch-depth: 0
21-
- uses: stackabletech/actions/run-pre-commit@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
21+
- uses: stackabletech/actions/run-pre-commit@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
2222
with:
2323
python-version: ${{ env.PYTHON_VERSION }}
2424
rust: ${{ env.RUST_TOOLCHAIN_VERSION }}

.github/workflows/reusable_build_image.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
with:
6060
persist-credentials: false
6161
- id: shard
62-
uses: stackabletech/actions/shard@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
62+
uses: stackabletech/actions/shard@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
6363
with:
6464
product-name: ${{ inputs.product-name }}
6565
outputs:
@@ -85,19 +85,19 @@ jobs:
8585
persist-credentials: false
8686

8787
- name: Free Disk Space
88-
uses: stackabletech/actions/free-disk-space@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
88+
uses: stackabletech/actions/free-disk-space@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
8989

9090
- name: Build Product Image
9191
id: build
92-
uses: stackabletech/actions/build-product-image@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
92+
uses: stackabletech/actions/build-product-image@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
9393
with:
9494
registry-namespace: ${{ inputs.registry-namespace }}
9595
product-name: ${{ inputs.product-name }}
9696
product-version: ${{ matrix.versions }}
9797
sdp-version: ${{ inputs.sdp-version }}
9898

9999
- name: Publish Container Image on oci.stackable.tech
100-
uses: stackabletech/actions/publish-image@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
100+
uses: stackabletech/actions/publish-image@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
101101
with:
102102
image-registry-uri: oci.stackable.tech
103103
image-registry-username: robot$${{ inputs.registry-namespace }}+github-action-build
@@ -123,7 +123,7 @@ jobs:
123123
persist-credentials: false
124124

125125
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
126-
uses: stackabletech/actions/publish-image-index-manifest@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
126+
uses: stackabletech/actions/publish-image-index-manifest@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
127127
with:
128128
image-registry-uri: oci.stackable.tech
129129
image-registry-username: robot$${{ inputs.registry-namespace }}+github-action-build
@@ -138,7 +138,7 @@ jobs:
138138
if: failure() || (github.run_attempt > 1 && !cancelled())
139139
steps:
140140
- name: Send Notification
141-
uses: stackabletech/actions/send-slack-notification@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
141+
uses: stackabletech/actions/send-slack-notification@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
142142
with:
143143
publish-manifests-result: ${{ needs.publish_manifests.result }}
144144
build-result: ${{ needs.build.result }}

.github/workflows/ubi-rust-builder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
if: failure() || (github.run_attempt > 1 && !cancelled())
114114
steps:
115115
- name: Send Notification
116-
uses: stackabletech/actions/send-slack-notification@c34dbb4f27b274736c7d2edc6f6f30a03d03edf5 # v0.12.2
116+
uses: stackabletech/actions/send-slack-notification@7fb064db885e006f6a9eeff69c7cd5ff5dea68bc # v0.13.0
117117
with:
118118
publish-manifests-result: ${{ needs.publish_manifests.result }}
119119
build-result: ${{ needs.build.result }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ All notable changes to this project will be documented in this file.
4848
- ubi9-rust-builder: Bump rust toolchain and cargo auditable versions ([#1432]).
4949
- stackable-base: Bump ubi9 image hash ([#1433]).
5050
- stackable-devel: Bump ubi9 image hash, update rust toolchain ([#1433], [#1435]).
51+
- stackable-base: Bump `config-utils` to `0.3.0` and `cert-tools` to `0.1.1` ([#1442]).
5152

5253
### Removed
5354

@@ -122,6 +123,7 @@ All notable changes to this project will be documented in this file.
122123
[#1435]: https://github.com/stackabletech/docker-images/pull/1435
123124
[#1436]: https://github.com/stackabletech/docker-images/pull/1436
124125
[#1437]: https://github.com/stackabletech/docker-images/pull/1437
126+
[#1442]: https://github.com/stackabletech/docker-images/pull/1442
125127

126128
## [25.11.0] - 2025-11-07
127129

stackable-base/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,14 @@ FROM local-image/stackable-devel AS rust-binaries
1111

1212
# Find the latest version here: https://github.com/stackabletech/config-utils/tags
1313
# renovate: datasource=github-tags packageName=stackabletech/config-utils
14-
ENV CONFIG_UTILS_VERSION=0.2.0
14+
ENV CONFIG_UTILS_VERSION=0.3.0
1515
# Find the latest version here: https://github.com/stackabletech/containerdebug/tags
1616
# renovate: datasource=github-tags packageName=stackabletech/containerdebug
1717
ENV CONTAINERDEBUG_VERSION=0.2.0
1818
# Find the latest version here: https://github.com/stackabletech/secret-operator/tags
1919
# I could not find support for prefixes or regex in https://docs.renovatebot.com/modules/datasource/github-tags/,
2020
# so I was unable to add a renovate hint.
21-
ENV CERT_TOOLS_VERSION=0.1.0
22-
21+
ENV CERT_TOOLS_VERSION=0.1.1
2322

2423
RUN <<EOF
2524
. "$HOME/.cargo/env"

0 commit comments

Comments
 (0)