diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 65b266f..266b64d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,14 +19,14 @@ jobs: steps: - name: Login to Docker Hub if: ${{ (github.event_name != 'pull_request') && (github.ref == 'refs/heads/master') }} - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: build-args: PHP_TAG_VERSION=${{ matrix.php_version }} push: ${{ (github.event_name != 'pull_request') && (github.ref == 'refs/heads/master') }}