From 492e0c4101c4f5f99722b2fb829f7cc5a170e494 Mon Sep 17 00:00:00 2001 From: Matt Godbolt Date: Fri, 10 Jul 2026 16:15:31 -0500 Subject: [PATCH] Update deprecated actions (docker/login-action v1 -> v3, checkout v3 -> v4) - docker/login-action v1 -> v3 - actions/checkout v3 -> v4 Found by an org-wide actionlint sweep; the lint tooling itself is staying in the core repos only, but these fixes stand on their own. Co-Authored-By: Claude Fable 5 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 648e750..195c7fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,12 +8,12 @@ jobs: runs-on: windows-2022 steps: - name: Docker Login - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build image run: docker build -t compilerexplorer/windows:latest . - name: Push to Docker Hub