From 802c63e411f600ddfb57d57ad8ce5c8d787df4c3 Mon Sep 17 00:00:00 2001 From: sst Date: Sun, 29 Dec 2024 11:54:24 +0000 Subject: [PATCH] Update .forgejo/workflows/build.yml --- .forgejo/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 6233e83..4f309ed 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -25,7 +25,7 @@ jobs: - name: Use buildah bud to create the image id: build-image - uses: redhat-actions/buildah-build@v2 + uses: https://github.com/redhat-actions/buildah-build@v2 with: image: ${{ env.IMAGE_NAME }} tags: latest ${{ github.sha }} @@ -41,7 +41,7 @@ jobs: echo $auth > $HOME/.docker/config.json - name: Log in to the GitHub Container registry - uses: redhat-actions/podman-login@v1 + uses: https://github.com/redhat-actions/podman-login@v1 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -49,7 +49,7 @@ jobs: - name: Push to GitHub Container Repository id: push-to-ghcr - uses: redhat-actions/push-to-registry@v2 + uses: https://github.com/redhat-actions/push-to-registry@v2 with: image: ${{ steps.build-image.outputs.image }} tags: ${{ steps.build-image.outputs.tags }}