From ecebf839c0919fa4ed79d993b82e454e891c9265 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Feb 2025 14:55:19 +0000 Subject: [PATCH] chore(deps): bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) | `3.7.0` | `3.8.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.7.1` | `3.9.0` | | [actions/cache](https://github.com/actions/cache) | `4.1.2` | `4.2.0` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5.5.1` | `5.6.1` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6.9.0` | `6.13.0` | Updates `sigstore/cosign-installer` from 3.7.0 to 3.8.0 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](https://github.com/sigstore/cosign-installer/compare/v3.7.0...v3.8.0) Updates `docker/setup-buildx-action` from 3.7.1 to 3.9.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.7.1...v3.9.0) Updates `actions/cache` from 4.1.2 to 4.2.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.1.2...v4.2.0) Updates `docker/metadata-action` from 5.5.1 to 5.6.1 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5.5.1...v5.6.1) Updates `docker/build-push-action` from 6.9.0 to 6.13.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6.9.0...v6.13.0) --- updated-dependencies: - dependency-name: sigstore/cosign-installer dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/metadata-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-container.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml index 78c7d9b..16c9bff 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -57,15 +57,15 @@ jobs: - name: 🏗 Install cosign if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} - uses: sigstore/cosign-installer@v3.7.0 + uses: sigstore/cosign-installer@v3.8.0 - name: 🏗 Setup Docker Buildx if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: docker/setup-buildx-action@v3.7.1 + uses: docker/setup-buildx-action@v3.9.0 - name: 🏗 Cache Docker Layers if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: actions/cache@v4.1.2 + uses: actions/cache@v4.2.0 with: path: /tmp/.buildx-cache key: container/${{ matrix.path }} @@ -88,7 +88,7 @@ jobs: - name: 🏗 Extract metadata if: ${{ steps.file_change.outputs.container_folder != 'false' }} id: meta - uses: docker/metadata-action@v5.5.1 + uses: docker/metadata-action@v5.6.1 with: github-token: ${{secrets.GITHUB_TOKEN}} images: | @@ -102,7 +102,7 @@ jobs: - name: 🚀 Build and export to docekr if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: docker/build-push-action@v6.9.0 + uses: docker/build-push-action@v6.13.0 with: context: ./${{matrix.path}} push: false @@ -122,7 +122,7 @@ jobs: - name: 🚀 Build and publish container image if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: docker/build-push-action@v6.9.0 + uses: docker/build-push-action@v6.13.0 with: context: ./${{matrix.path}} push: ${{ github.event_name != 'pull_request' }}