Skip to content

Commit

Permalink
Merge pull request #103 from kool-dev/dependabot/github_actions/docke…
Browse files Browse the repository at this point in the history
…r/build-push-action-6

Bump docker/build-push-action from 5 to 6
  • Loading branch information
fabriciojs authored Oct 29, 2024
2 parents 08685f8 + f7be183 commit e225271
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and export to Docker
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.version }}${{ matrix.type }}
load: true
Expand All @@ -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@v5
uses: docker/build-push-action@v6
if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php'
with:
context: ${{ matrix.version }}${{ matrix.type }}
Expand All @@ -60,14 +60,14 @@ jobs:
tags: kooldev/php:${{ matrix.version }}${{ matrix.type }}

- name: Build and export to Docker (nginx)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.version }}-nginx${{ matrix.type }}
load: true
tags: kooldev/php:${{ matrix.version }}-nginx${{ matrix.type }}

- name: Build and export to Docker (Node)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: matrix.type == ''
with:
context: ${{ matrix.version }}-node${{ matrix.type }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
docker run kooldev/php:${{ matrix.version }}-nginx${{ matrix.type }} supervisord version
- name: Build and push (nginx)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php'
with:
context: ${{ matrix.version }}-nginx${{ matrix.type }}
Expand All @@ -105,7 +105,7 @@ jobs:
tags: kooldev/php:${{ matrix.version }}-nginx${{ matrix.type }}

- name: Build and push (Node)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: github.ref == 'refs/heads/master' && github.repository == 'kool-dev/docker-php' && matrix.type == ''
with:
context: ${{ matrix.version }}-node${{ matrix.type }}
Expand Down

0 comments on commit e225271

Please sign in to comment.