From 4007c167c82844f29bd873ad399fd82ad1cd9671 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 10:16:44 +0000 Subject: [PATCH] chore(deps): bump the github-actions-dependencies group with 2 updates Bumps the github-actions-dependencies group with 2 updates: [actions/attest](https://github.com/actions/attest) and [docker/login-action](https://github.com/docker/login-action). Updates `actions/attest` from 4 to 4.2.0 - [Release notes](https://github.com/actions/attest/releases) - [Changelog](https://github.com/actions/attest/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest/compare/v4...v4.2.0) Updates `docker/login-action` from 4 to 4.5.2 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4...v4.5.2) --- updated-dependencies: - dependency-name: actions/attest dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies - dependency-name: docker/login-action dependency-version: 4.5.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/binary_provenance.yml | 4 ++-- .github/workflows/docker.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/binary_provenance.yml b/.github/workflows/binary_provenance.yml index 5549c2701..637828d64 100644 --- a/.github/workflows/binary_provenance.yml +++ b/.github/workflows/binary_provenance.yml @@ -59,7 +59,7 @@ jobs: - name: Attest Build Provenance id: artifact-gh-attest - uses: actions/attest@v4 + uses: actions/attest@v4.2.0 with: subject-name: ${{matrix.artifact.template_name}} subject-digest: sha256:${{ env.FINGERPRINT }} @@ -94,7 +94,7 @@ jobs: - name: Attest SBOM to Github id: sbom-gh-attest - uses: actions/attest@v4 + uses: actions/attest@v4.2.0 with: sbom-path: '${{matrix.artifact.template_name}}-sbom.spdx.json' subject-name: ${{matrix.artifact.template_name}} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 508ac8a9b..bc76640fd 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -134,7 +134,7 @@ jobs: # No QEMU needed — each runner is already native for its platform - name: Login to GitHub Container Registry - uses: docker/login-action@v4 + uses: docker/login-action@v4.5.2 with: registry: ghcr.io username: ${{ github.actor }} @@ -212,7 +212,7 @@ jobs: uses: docker/setup-buildx-action@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v4 + uses: docker/login-action@v4.5.2 with: registry: ghcr.io username: ${{ github.actor }} @@ -258,7 +258,7 @@ jobs: echo "FINGERPRINT=$ARTIFACT_SHA" >> ${GITHUB_ENV} - name: Attest Build Provenance - uses: actions/attest@v4 + uses: actions/attest@v4.2.0 with: subject-name: ${{ env.IMAGE }} subject-digest: ${{ steps.docker_build.outputs.digest }} @@ -273,7 +273,7 @@ jobs: upload-artifact: false - name: Attest SBOM to Github - uses: actions/attest@v4 + uses: actions/attest@v4.2.0 with: sbom-path: 'sbom.spdx.json' subject-name: ${{ env.IMAGE }}