diff --git a/.github/actions/process-image/action-openjdk.yml b/.github/actions/process-image-openjdk/action.yml similarity index 100% rename from .github/actions/process-image/action-openjdk.yml rename to .github/actions/process-image-openjdk/action.yml diff --git a/.github/actions/process-image/action-base.yml b/.github/actions/process-image/action.yml similarity index 100% rename from .github/actions/process-image/action-base.yml rename to .github/actions/process-image/action.yml diff --git a/.github/workflows/obaas-base-image.yml b/.github/workflows/obaas-base-image.yml index 57f51912c..5ae0692ae 100644 --- a/.github/workflows/obaas-base-image.yml +++ b/.github/workflows/obaas-base-image.yml @@ -37,7 +37,7 @@ jobs: - name: Create New Image if: env.latest_digest == '' - uses: ./.github/actions/process-image/action-base.yml + uses: ./.github/actions/process-image with: src_image: container-registry.oracle.com/graalvm/native-image:${{ matrix.base_version }}-${{ env.src_tag_suffix }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }} @@ -60,7 +60,7 @@ jobs: - name: Update Existing Image id: update_image if: env.latest_digest != '' && steps.trivy_scan.outcome == 'failure' - uses: ./.github/actions/process-image/action-base.yml + uses: ./.github/actions/process-image with: src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }} @@ -77,7 +77,7 @@ jobs: - name: Push Updated Image if: steps.get_newest_digest.outcome != 'skipped' && env.latest_digest != env.newest_digest - uses: ./.github/actions/process-image/action-base.yml + uses: ./.github/actions/process-image with: src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}-${{ env.src_tag_suffix }} diff --git a/.github/workflows/openjdk-base-image.yml b/.github/workflows/openjdk-base-image.yml index c940292f0..22646dc96 100644 --- a/.github/workflows/openjdk-base-image.yml +++ b/.github/workflows/openjdk-base-image.yml @@ -36,7 +36,7 @@ jobs: - name: Create New Image if: env.latest_digest == '' - uses: ./.github/actions/process-image/action-openjdk.yml + uses: ./.github/actions/process-image-openjdk with: src_image: container-registry.oracle.com/java/openjdk:${{ matrix.base_version }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} @@ -60,7 +60,7 @@ jobs: - name: Update Existing Image id: update_image if: env.latest_digest != '' && steps.trivy_scan.outcome == 'failure' - uses: ./.github/actions/process-image/action-openjdk.yml + uses: ./.github/actions/process-image-open-jdk with: src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} @@ -78,7 +78,7 @@ jobs: - name: Push Updated Image if: steps.get_newest_digest.outcome != 'skipped' && env.latest_digest != env.newest_digest - uses: ./.github/actions/process-image/action-openjdk.yml + uses: ./.github/actions/process-image-open-jdk with: src_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }} dst_image: ghcr.io/${{ github.repository_owner }}/${{ env.dst_img }}:${{ matrix.base_version }}