diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 52f53702a7..ef33fe94e1 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -54,7 +54,7 @@ runs: # build a docker image - name: build docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 if: ${{ github.event.inputs.is_production == false }} with: context: . @@ -79,7 +79,7 @@ runs: # build a docker image - name: build docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 if: ${{ github.event.inputs.is_production == true }} with: context: . diff --git a/.github/workflows/ghcr.yml b/.github/workflows/ghcr.yml index 7a5ff08bb7..a2013a1185 100644 --- a/.github/workflows/ghcr.yml +++ b/.github/workflows/ghcr.yml @@ -36,7 +36,7 @@ jobs: type=ref,event=tag ${{ github.event_name == 'push' && 'type=raw,value=main' || '' }} - - uses: docker/build-push-action@v2 + - uses: docker/build-push-action@v3 with: context: . tags: ${{ steps.metadata.outputs.tags }}