From f1583b4c6c7940bc62e40a10a374127e53fe7186 Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Thu, 19 Mar 2026 11:42:22 -0500 Subject: [PATCH] chore(ci): upgrade docker actions to fix Node.js 20 deprecation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - docker/login-action v3 → v4 - docker/build-push-action v6 → v7 Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/build-test-container.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-container.yml b/.github/workflows/build-test-container.yml index 51c82b6..a1628b6 100644 --- a/.github/workflows/build-test-container.yml +++ b/.github/workflows/build-test-container.yml @@ -27,14 +27,14 @@ jobs: run: echo "name=${IMAGE,,}" >> "$GITHUB_OUTPUT" - name: Log in to GHCR - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: tests/infrastructure file: tests/infrastructure/Dockerfile