From 243d077e152576b21b219913a530a41f751711a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 03:30:56 +0000 Subject: [PATCH] chore(deps): bump the github-actions group across 1 directory with 6 updates Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.2` | `4.2.0` | | [sigstore/cosign-installer](https://github.com/sigstore/cosign-installer) | `3.4.0` | `3.7.0` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.2.0` | `3.7.1` | | [actions/cache](https://github.com/actions/cache) | `4.0.2` | `4.1.0` | | [docker/login-action](https://github.com/docker/login-action) | `3.1.0` | `3.3.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `5.3.0` | `6.9.0` | Updates `actions/checkout` from 4.1.2 to 4.2.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.2...v4.2.0) Updates `sigstore/cosign-installer` from 3.4.0 to 3.7.0 - [Release notes](https://github.com/sigstore/cosign-installer/releases) - [Commits](https://github.com/sigstore/cosign-installer/compare/v3.4.0...v3.7.0) Updates `docker/setup-buildx-action` from 3.2.0 to 3.7.1 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.2.0...v3.7.1) Updates `actions/cache` from 4.0.2 to 4.1.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.0.2...v4.1.0) Updates `docker/login-action` from 3.1.0 to 3.3.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3.1.0...v3.3.0) Updates `docker/build-push-action` from 5.3.0 to 6.9.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5.3.0...v6.9.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - 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/login-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-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/publish-container.yml | 14 +++++++------- .github/workflows/sync-labels.yml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-container.yml b/.github/workflows/publish-container.yml index d204e75..1769fc6 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -89,7 +89,7 @@ jobs: steps: - name: โคต๏ธ Checkout repository - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.2.0 - name: โ” Check Container files changed id: file_change @@ -113,29 +113,29 @@ jobs: - name: ๐Ÿ— Install cosign if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} - uses: sigstore/cosign-installer@v3.4.0 + uses: sigstore/cosign-installer@v3.7.0 - name: ๐Ÿ— Setup Docker Buildx if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: docker/setup-buildx-action@v3.2.0 + uses: docker/setup-buildx-action@v3.7.1 - name: ๐Ÿ— Cache Docker Layers if: ${{ steps.file_change.outputs.container_folder != 'false' }} - uses: actions/cache@v4.0.2 + uses: actions/cache@v4.1.0 with: path: /tmp/.buildx-cache key: container/${{ matrix.path }} - name: ๐Ÿ— Log into docker hub registry if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.3.0 with: username: ${{env.USER}} password: ${{secrets.DOCKER_HUB_TOKEN}} - name: ๐Ÿ— Log into ghcr.io registry if: ${{ github.event_name != 'pull_request' && steps.file_change.outputs.container_folder != 'false' }} - uses: docker/login-action@v3.1.0 + uses: docker/login-action@v3.3.0 with: registry: ghcr.io username: ${{env.USER}} @@ -144,7 +144,7 @@ jobs: - name: ๐Ÿš€ Build and push container image if: ${{ steps.file_change.outputs.container_folder != 'false' }} id: build_and_push - uses: docker/build-push-action@v5.3.0 + uses: docker/build-push-action@v6.9.0 with: context: ./${{matrix.path}} push: ${{github.event_name != 'pull_request'}} diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index 27c5d62..6427fb2 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -22,7 +22,7 @@ jobs: steps: - name: โคต๏ธ Check out code from GitHub - uses: actions/checkout@v4.1.2 + uses: actions/checkout@v4.2.0 - name: ๐Ÿš€ Run Label Syncer uses: micnncim/action-label-syncer@v1.3.0