From 63d54a1f473aa51bac4eb39ec35b17e8842dc8ac Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 10:49:39 +0000 Subject: [PATCH] Update GitHub Actions --- .github/workflows/docker-publish-on-comment.yml | 14 +++++++------- .github/workflows/docker-publish.yml | 14 +++++++------- .github/workflows/lint.yml | 2 +- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docker-publish-on-comment.yml b/.github/workflows/docker-publish-on-comment.yml index c0f86e36..b8c6194c 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@5138f76647652447004da686b2411557eaf65f33 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # 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@70fccc794acd729b2b22dd6a326895f286447728 + uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 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@70fccc794acd729b2b22dd6a326895f286447728 + uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 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@f7b4ed12385588c3f9bc252f0a2b520d83b52d48 + uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 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@2a53c6ccda456d31fb62eedc658aae06e238b7bd + uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b with: context: . push: true @@ -96,7 +96,7 @@ jobs: - name: Extract Docker metadata - alpine id: meta-alpine - uses: docker/metadata-action@f7b4ed12385588c3f9bc252f0a2b520d83b52d48 + uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 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@2a53c6ccda456d31fb62eedc658aae06e238b7bd + uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b with: context: . target: alpine-release diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index b11a375a..480808f6 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@5138f76647652447004da686b2411557eaf65f33 + uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # 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@70fccc794acd729b2b22dd6a326895f286447728 + uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 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@70fccc794acd729b2b22dd6a326895f286447728 + uses: docker/login-action@7ca345011ac4304463197fac0e56eab1bc7e6af0 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@f7b4ed12385588c3f9bc252f0a2b520d83b52d48 + uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 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@2a53c6ccda456d31fb62eedc658aae06e238b7bd + uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b 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@f7b4ed12385588c3f9bc252f0a2b520d83b52d48 + uses: docker/metadata-action@906ecf0fc0a80f9110f79d9e6c04b1080f4a2621 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@2a53c6ccda456d31fb62eedc658aae06e238b7bd + uses: docker/build-push-action@7e094594beda23fc8f21fa31049f4b203e51096b with: context: . target: alpine-release diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index b53e195f..94d47bf5 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: 🧼 lint renovate config # Validates changes to renovate.json config file - uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.0.1 + uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.1.1 with: config_file_path: 'renovate.json' golangci: