Skip to content

Commit 5fe7442

Browse files
authored
ci: Fix image builds for products with dashes in their name (#1251)
1 parent 8176b5c commit 5fe7442

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.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@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
60+
uses: stackabletech/actions/publish-image@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
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@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
87+
uses: stackabletech/actions/publish-image-index-manifest@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
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@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
21+
- uses: stackabletech/actions/run-pre-commit@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
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
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
persist-credentials: false
2929
- id: shard
30-
uses: stackabletech/actions/shard@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
30+
uses: stackabletech/actions/shard@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
3131
with:
3232
product-name: ${{ inputs.product-name }}
3333
outputs:
@@ -53,19 +53,19 @@ jobs:
5353
persist-credentials: false
5454

5555
- name: Free Disk Space
56-
uses: stackabletech/actions/free-disk-space@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
56+
uses: stackabletech/actions/free-disk-space@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
5757

5858
- name: Build Product Image
5959
id: build
60-
uses: stackabletech/actions/build-product-image@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
60+
uses: stackabletech/actions/build-product-image@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
6161
with:
6262
registry-namespace: ${{ inputs.registry-namespace }}
6363
product-name: ${{ inputs.product-name }}
6464
product-version: ${{ matrix.versions }}
6565
sdp-version: ${{ inputs.sdp-version }}
6666

6767
- name: Publish Container Image on oci.stackable.tech
68-
uses: stackabletech/actions/publish-image@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
68+
uses: stackabletech/actions/publish-image@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
6969
with:
7070
image-registry-uri: oci.stackable.tech
7171
image-registry-username: robot$${{ inputs.registry-namespace }}+github-action-build
@@ -91,7 +91,7 @@ jobs:
9191
persist-credentials: false
9292

9393
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
94-
uses: stackabletech/actions/publish-image-index-manifest@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
94+
uses: stackabletech/actions/publish-image-index-manifest@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
9595
with:
9696
image-registry-uri: oci.stackable.tech
9797
image-registry-username: robot$${{ inputs.registry-namespace }}+github-action-build
@@ -106,7 +106,7 @@ jobs:
106106
if: failure() || (github.run_attempt > 1 && !cancelled())
107107
steps:
108108
- name: Send Notification
109-
uses: stackabletech/actions/send-slack-notification@c4e66c3fb2426b37799fdace4b968a03f9478e3c # v0.10.0
109+
uses: stackabletech/actions/send-slack-notification@a5d39a4eb109bb6af3c152800701c86e98bfe1a5 # v0.10.1
110110
with:
111111
publish-manifests-result: ${{ needs.publish_manifests.result }}
112112
build-result: ${{ needs.build.result }}

0 commit comments

Comments
 (0)