From 852ac764195b340c6792b0cacb752e1e1453eeba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Sep 2023 09:06:12 +0000 Subject: [PATCH] Bump docker/build-push-action from 4 to 5 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-cd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index d4583ce..37ed04b 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -33,7 +33,7 @@ jobs: password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and export to Docker - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: ${{ matrix.version }}${{ matrix.type }} load: true @@ -51,7 +51,7 @@ jobs: docker run -e ENABLE_XDEBUG=true kooldev/php:${{ matrix.version }}${{ matrix.type }} php -m - name: Build and push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php' with: context: ${{ matrix.version }}${{ matrix.type }} @@ -60,7 +60,7 @@ jobs: tags: kooldev/php:${{ matrix.version }}${{ matrix.type }} - name: Build and export to Docker (nginx) - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: ${{ matrix.version }}-nginx${{ matrix.type }} load: true @@ -81,7 +81,7 @@ jobs: docker run kooldev/php:${{ matrix.version }}-nginx${{ matrix.type }} supervisord version - name: Build and push (nginx) - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php' with: context: ${{ matrix.version }}-nginx${{ matrix.type }}