From 3030e954fc80544a832acfeb07da6cf58fa9c420 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Sun, 23 Aug 2026 22:13:33 +0200 Subject: [PATCH] chore(ci): bump container build actions Bump redhat-actions/podman-login to v2 and redhat-actions/push-to-registry to v3 in container-build action. --- .github/actions/container-build/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/container-build/action.yml b/.github/actions/container-build/action.yml index e161261..bca207c 100644 --- a/.github/actions/container-build/action.yml +++ b/.github/actions/container-build/action.yml @@ -38,7 +38,7 @@ runs: - name: Log in to the Container registry if: ${{ inputs.push == 'true' && inputs.password != '' }} - uses: redhat-actions/podman-login@v1 + uses: redhat-actions/podman-login@v2 with: registry: ghcr.io username: ${{ inputs.username }} @@ -114,7 +114,7 @@ runs: - name: Push CLI image if: ${{ inputs.push == 'true' && inputs.password != '' }} - uses: redhat-actions/push-to-registry@v2 + uses: redhat-actions/push-to-registry@v3 with: image: ${{ steps.build-cli.outputs.image }} tags: ${{ steps.build-cli.outputs.tags }} @@ -124,7 +124,7 @@ runs: - name: Push Builder CLI image if: ${{ inputs.push == 'true' && inputs.password != '' }} - uses: redhat-actions/push-to-registry@v2 + uses: redhat-actions/push-to-registry@v3 with: image: ${{ steps.build-builder.outputs.image }} tags: ${{ steps.build-builder.outputs.tags }}