From 6c6bd077ea4f4205b5a0af0e1f3b496d967664a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 07:07:11 +0000 Subject: [PATCH] chore(deps): bump docker/build-push-action from 6 to 7 Bumps [docker/build-push-action](https://github.com/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: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test_and_publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_and_publish.yml b/.github/workflows/test_and_publish.yml index f7989d3..2e43c03 100644 --- a/.github/workflows/test_and_publish.yml +++ b/.github/workflows/test_and_publish.yml @@ -49,14 +49,14 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build PHP - ${{ matrix.php }} image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: github.event_name == 'pull_request' with: context: php/${{ matrix.php }} tags: easyengine/php${{ steps.img-tag.outputs.tag }}:test - name: Build and push PHP - ${{ matrix.php }} image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: github.event_name != 'pull_request' with: context: php/${{ matrix.php }} @@ -93,14 +93,14 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build ${{ matrix.others }} image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: github.event_name == 'pull_request' with: context: ${{ matrix.others }} tags: easyengine/${{ matrix.others }}:test - name: Build and push ${{ matrix.others }} image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 if: github.event_name != 'pull_request' with: context: ${{ matrix.others }}