From fbfc9b544da9a364d8999bc8d1b73bd836a1e53d Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 25 Oct 2025 11:52:35 +0000 Subject: [PATCH] Fix: Correct invalid docker/login-action SHA The GitHub Actions workflow was failing with an "An action could not be found" error. This was caused by an invalid commit SHA for the `docker/login-action` in the `.github/workflows/docker.yml` file. This commit corrects the SHA to point to a valid, recent version of the action, resolving the workflow failure. --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 85b02b4..c642f27 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -22,7 +22,7 @@ jobs: uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 - name: Log in to the Container registry - uses: docker/login-action@9788b0c4429711fb0def2b5cb23a4bB5Dff6c30a + uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef with: registry: ghcr.io username: ${{ github.actor }}