Skip to content

Commit 545d43b

Browse files
authored
Fix image build (#1051)
Signed-off-by: Andy Tael <andy.tael@yahoo.com>
1 parent 0631b91 commit 545d43b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/obaas-base-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Create New Image
3939
if: env.latest_digest == ''
40-
uses: ./.github/actions/process-image/action-base.yml
40+
uses: ./.github/actions/process-image
4141
with:
4242
src_image: container-registry.oracle.com/graalvm/native-image:${{ matrix.base_version }}-${{ env.src_tag_suffix }}
4343
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }}
@@ -60,7 +60,7 @@ jobs:
6060
- name: Update Existing Image
6161
id: update_image
6262
if: env.latest_digest != '' && steps.trivy_scan.outcome == 'failure'
63-
uses: ./.github/actions/process-image/action-base.yml
63+
uses: ./.github/actions/process-image
6464
with:
6565
src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
6666
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }}
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Push Updated Image
7979
if: steps.get_newest_digest.outcome != 'skipped' && env.latest_digest != env.newest_digest
80-
uses: ./.github/actions/process-image/action-base.yml
80+
uses: ./.github/actions/process-image
8181
with:
8282
src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
8383
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }}

.github/workflows/openjdk-base-image.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Create New Image
3838
if: env.latest_digest == ''
39-
uses: ./.github/actions/process-image/action-openjdk.yml
39+
uses: ./.github/actions/process-image-openjdk
4040
with:
4141
src_image: container-registry.oracle.com/java/openjdk:${{ matrix.base_version }}
4242
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
@@ -60,7 +60,7 @@ jobs:
6060
- name: Update Existing Image
6161
id: update_image
6262
if: env.latest_digest != '' && steps.trivy_scan.outcome == 'failure'
63-
uses: ./.github/actions/process-image/action-openjdk.yml
63+
uses: ./.github/actions/process-image-open-jdk
6464
with:
6565
src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
6666
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
@@ -78,7 +78,7 @@ jobs:
7878
7979
- name: Push Updated Image
8080
if: steps.get_newest_digest.outcome != 'skipped' && env.latest_digest != env.newest_digest
81-
uses: ./.github/actions/process-image/action-openjdk.yml
81+
uses: ./.github/actions/process-image-open-jdk
8282
with:
8383
src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}
8484
dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}

0 commit comments

Comments
 (0)