From d1edad26087280ac4719dda00aeb2166d1fed29d Mon Sep 17 00:00:00 2001 From: Jim Angel Date: Sun, 16 Nov 2025 17:42:50 -0600 Subject: [PATCH] Add gcloud_component beta to compute-ssh action Added required gcloud_component parameter to WIF SSH action. Otherwise you get this error: > ERROR: gcloud crashed (NotImplementedError): SSH using federated workforce identities is not yet generally available (GA). Please use `gcloud beta compute ssh` to SSH using a third-party identity. Signed-off-by: Jim Angel --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 20503cc..b95e5ca 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,7 @@ jobs: - id: 'compute-ssh' uses: 'google-github-actions/ssh-compute@v2' with: + gcloud_component: beta # until WIF SSH is GA instance_name: 'example-instance' zone: 'us-central1-a' ssh_private_key: '${{ secrets.GCP_SSH_PRIVATE_KEY }}'