From 3588bd0964fbeb966d69269a4cce77d8c406420b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 11:23:34 +0000 Subject: [PATCH] Bump the actions-minor group with 2 updates Bumps the actions-minor group with 2 updates: [docker/login-action](https://github.com/docker/login-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `docker/login-action` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](https://github.com/docker/login-action/compare/v4.1.0...v4.2.0) Updates `docker/build-push-action` from 7.1.0 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.1.0...v7.2.0) --- updated-dependencies: - dependency-name: docker/login-action dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 4 ++-- .github/workflows/docker.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 364610f..13a5471 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -41,7 +41,7 @@ jobs: uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0 - name: Login to the Registry - uses: docker/login-action@v4.1.0 + uses: docker/login-action@v4.2.0 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME }} @@ -61,7 +61,7 @@ jobs: org.opencontainers.image.source=https://github.com/offensive-vk/develop-actions/ - name: Build and Push Docker Image - uses: docker/build-push-action@v7.1.0 + uses: docker/build-push-action@v7.2.0 with: context: . push: true diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b7a06e0..9d3b66b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -46,7 +46,7 @@ jobs: - name: Log into Registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@9f4a8ea54ed9055d5f86c993e1f2ffa674f98344 # v3.0.0 + uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v3.0.0 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME }} @@ -67,7 +67,7 @@ jobs: - name: Build and Push Docker Image id: build-and-push - uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0 + uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0 with: context: . push: ${{ github.event_name != 'pull_request' }}