From ced0579f93401db4d30bcdccdc8650161b3e6907 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sun, 6 Jul 2025 09:44:31 +0100 Subject: [PATCH] fix(ci): use `outcome` instead of `conclusion` (#9792) According to the documentation [0]: > When a `continue-on-error step` fails, the `outcome` is `failure`, but the final `conclusion` is `success`. We update the action accordingly to make our retry mechanism work. [0]: https://docs.github.com/es/actions/reference/contexts-reference#steps-context Signed-off-by: Thomas Eizinger --- .github/actions/gcp-docker-login/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/gcp-docker-login/action.yml b/.github/actions/gcp-docker-login/action.yml index e3990cfa4..535f1efd8 100644 --- a/.github/actions/gcp-docker-login/action.yml +++ b/.github/actions/gcp-docker-login/action.yml @@ -18,7 +18,7 @@ runs: create_credentials_file: true - id: auth2 - if: ${{ steps.auth1.conclusion == 'failure' }} + if: ${{ steps.auth1.outcome == 'failure' }} uses: google-github-actions/auth@ba79af03959ebeac9769e648f473a284504d9193 # v2.1.10 continue-on-error: true with: @@ -29,7 +29,7 @@ runs: create_credentials_file: true - id: auth3 - if: ${{ steps.auth2.conclusion == 'failure' }} + if: ${{ steps.auth2.outcome == 'failure' }} uses: google-github-actions/auth@ba79af03959ebeac9769e648f473a284504d9193 # v2.1.10 with: token_format: access_token