From 5531ff060047a761a89149bb9858424210b71ff4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 05:21:00 +0000 Subject: [PATCH] build(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.2.2` | `6.0.2` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | Updates `actions/checkout` from 4.2.2 to 6.0.2 - [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.2.2...v6.0.2) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3...v4) Updates `actions/cache` from 4 to 5 - [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...v5) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v3...v4) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](https://github.com/docker/metadata-action/compare/v5...v6) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: '7' 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 418c900..dd96855 100644 --- a/.github/workflows/publish-container.yml +++ b/.github/workflows/publish-container.yml @@ -57,7 +57,7 @@ jobs: steps: - name: โคต๏ธ Checkout Repository - uses: actions/checkout@v4.2.2 + uses: actions/checkout@v6.0.2 - name: โ” Check for Relevant File Changes id: changes @@ -91,11 +91,11 @@ jobs: - name: ๐Ÿ— Setup Docker Buildx if: steps.build_decision.outputs.should_build == 'true' - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: ๐Ÿ— Cache Docker Layers if: steps.build_decision.outputs.should_build == 'true' - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/.buildx-cache key: buildx-${{ runner.os }}-${{ matrix.path }}-${{ github.sha }} @@ -104,14 +104,14 @@ jobs: - name: ๐Ÿ” Log into docker.io Registry if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: username: mm25zamanian password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: ๐Ÿ” Log into ghcr.io Registry if: steps.build_decision.outputs.should_build == 'true' && github.event_name != 'pull_request' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ env.REGISTRY_USER }} @@ -120,7 +120,7 @@ jobs: - name: Extract Container Metadata id: meta if: steps.build_decision.outputs.should_build == 'true' - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: | ghcr.io/${{env.REGISTRY_USER}}/${{matrix.name}},enable=true @@ -134,7 +134,7 @@ jobs: - name: ๐Ÿš€ Build and Push Container Image id: build-and-push if: steps.build_decision.outputs.should_build == 'true' - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 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 2cd3369..b1d5df1 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.2.2 + uses: actions/checkout@v6.0.2 - name: ๐Ÿš€ Run Label Syncer uses: micnncim/action-label-syncer@v1.3.0