From 59faeab1d8e79c7aabbd4669733703a3309f2764 Mon Sep 17 00:00:00 2001 From: Jeff Erickson <16201464+jee7s@users.noreply.github.com> Date: Sat, 27 Jun 2026 13:59:26 -0500 Subject: [PATCH] ci: bump docker/login-action v3 -> v4 (Node 24 runtime) v3.x declares node20 (deprecated; GitHub force-runs it on node24 with a warning). v4.0.0 switched the action's default runtime to node24. Updated both the dev deploy and the prod promote workflows. GitHub-hosted runners satisfy v4's runner requirement (>= 2.327.1). Co-Authored-By: Claude Opus 4.8 --- .github/workflows/deploy-dev.yml | 2 +- .github/workflows/promote-prod.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-dev.yml b/.github/workflows/deploy-dev.yml index ff24122..f147bce 100644 --- a/.github/workflows/deploy-dev.yml +++ b/.github/workflows/deploy-dev.yml @@ -79,7 +79,7 @@ jobs: - name: Log in to ghcr.io if: env.SKIP_DEPLOY != 'true' - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }} diff --git a/.github/workflows/promote-prod.yml b/.github/workflows/promote-prod.yml index f7d3dfe..f6384bf 100644 --- a/.github/workflows/promote-prod.yml +++ b/.github/workflows/promote-prod.yml @@ -83,7 +83,7 @@ jobs: aws-region: ${{ secrets.AWS_REGION }} - name: Log in to ghcr.io - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.actor }}