diff --git a/.github/actions/docker/action.yml b/.github/actions/docker/action.yml index e1b74f2c..696f628a 100644 --- a/.github/actions/docker/action.yml +++ b/.github/actions/docker/action.yml @@ -115,7 +115,7 @@ runs: shell: bash - name: Build and export to Docker - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 if: inputs.PLATFORMS == 'linux/amd64' && inputs.TAG_ONLY == 'false' with: load: true @@ -145,7 +145,7 @@ runs: - name: Build and push if: inputs.PUSH == 'true' # && inputs.TAG_ONY == 'false' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: true tags: | diff --git a/.github/workflows/docker-bp.yml b/.github/workflows/docker-bp.yml index 43e19579..3e5345a3 100644 --- a/.github/workflows/docker-bp.yml +++ b/.github/workflows/docker-bp.yml @@ -73,7 +73,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and export to Docker - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: load: true tags: ${{ steps.meta.outputs.tags }} @@ -113,7 +113,7 @@ jobs: }) - name: Build and push # if: github.ref == 'refs/heads/main' && github.event_name == 'push' - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: true tags: ${{ steps.meta.outputs.tags }}