diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 377a8b1..22c2845 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,7 +62,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Build Server image (test) - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: apps/server/Dockerfile @@ -71,7 +71,7 @@ jobs: cache-to: type=gha,mode=max - name: Build Web image (test) - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: apps/web/Dockerfile diff --git a/.github/workflows/docker-build-release.yml b/.github/workflows/docker-build-release.yml index 956aca5..7ceb334 100644 --- a/.github/workflows/docker-build-release.yml +++ b/.github/workflows/docker-build-release.yml @@ -65,7 +65,7 @@ jobs: type=raw,value=${{ github.event.inputs.tag }},enable=${{ github.event_name == 'workflow_dispatch' }} - name: Build and push Server image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: apps/server/Dockerfile @@ -77,7 +77,7 @@ jobs: platforms: linux/amd64,linux/arm64 - name: Build and push Web image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: apps/web/Dockerfile