From fee7a22d2c6142a63850fc64870cbaa0346f770b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:57:15 +0000 Subject: [PATCH] Update GitHub Actions --- .github/workflows/docker-publish-on-comment.yml | 14 +++++++------- .github/workflows/docker-publish.yml | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/docker-publish-on-comment.yml b/.github/workflows/docker-publish-on-comment.yml index f0f7054d..92a3470d 100644 --- a/.github/workflows/docker-publish-on-comment.yml +++ b/.github/workflows/docker-publish-on-comment.yml @@ -46,12 +46,12 @@ jobs: # Workaround: https://github.com/docker/build-push-action/issues/461 - name: Setup Docker buildx - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 + uses: docker/setup-buildx-action@6a25f988bdfa969e96a38fc9f843ea31e0b5df27 # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into GH registry (ghcr.io) - uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 + uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99 with: registry: ghcr.io username: ${{ github.actor }} @@ -59,7 +59,7 @@ jobs: - name: Log into Docker Hub registry if: env.DOCKERHUB_USERNAME != '' - uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 + uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99 with: username: ${{ env.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -70,7 +70,7 @@ jobs: # 2nd image name is for DockerHub image - name: Extract Docker metadata id: meta - uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 + uses: docker/metadata-action@8e1d5461f02b7886d3c1a774bfbd873650445aa2 with: context: git images: | @@ -85,7 +85,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b + uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d with: context: . push: true @@ -96,7 +96,7 @@ jobs: - name: Extract Docker metadata - alpine id: meta-alpine - uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 + uses: docker/metadata-action@8e1d5461f02b7886d3c1a774bfbd873650445aa2 with: context: git images: | @@ -108,7 +108,7 @@ jobs: flavor: prefix=alpine-,onlatest=true - name: Build and push Docker image - alpine id: build-and-push-alpine - uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b + uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d with: context: . target: alpine-release diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 480808f6..0dfc61c3 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -47,13 +47,13 @@ jobs: # Workaround: https://github.com/docker/build-push-action/issues/461 - name: Setup Docker buildx - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 + uses: docker/setup-buildx-action@6a25f988bdfa969e96a38fc9f843ea31e0b5df27 # Login against a Docker registry except on PR # https://github.com/docker/login-action - name: Log into GH registry (ghcr.io) if: github.event_name != 'pull_request' - uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 + uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99 with: registry: ghcr.io username: ${{ github.actor }} @@ -61,7 +61,7 @@ jobs: - name: Log into Docker Hub registry if: github.event_name != 'pull_request' && env.DOCKERHUB_USERNAME != '' - uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 + uses: docker/login-action@327cd5a69de6c009b9ce71bce8395f28e651bf99 with: username: ${{ env.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -72,7 +72,7 @@ jobs: # 2nd image name is for DockerHub image - name: Extract Docker metadata id: meta - uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 + uses: docker/metadata-action@8e1d5461f02b7886d3c1a774bfbd873650445aa2 with: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} @@ -82,7 +82,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b + uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d with: context: . push: ${{ github.event_name != 'pull_request' }} @@ -97,7 +97,7 @@ jobs: # 2nd image name is for DockerHub image - name: Extract Docker metadata - alpine id: meta-alpine - uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 + uses: docker/metadata-action@8e1d5461f02b7886d3c1a774bfbd873650445aa2 with: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} @@ -107,7 +107,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image - alpine id: build-and-push-alpine - uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b + uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d with: context: . target: alpine-release