You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we create an action with something like this:
#redactedsteps:
- name: OIDC Login to Azure Public Cloud with AzPowershell (enableAzPSSession true)uses: azure/login@v1with:
client-id: ${{ secrets.AZURE_CLIENT_ID }}tenant-id: ${{ secrets.AZURE_TENANT_ID }}subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} enable-AzPSSession: true
- name: 'Get RG with powershell action'uses: azure/powershell@v1with:
inlineScript: | Get-AzResourceGroupazPSVersion: "latest"
It continues to try and logon but never succeeds, so we have to cancel it. If we use FROM summerwind/actions-runner:latest instead of FROM ghcr.io/actions/actions-runner:latest when building our docker image, it works successfully.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, we created a docker image using the following:
When we create an action with something like this:
It continues to try and logon but never succeeds, so we have to cancel it. If we use FROM summerwind/actions-runner:latest instead of FROM ghcr.io/actions/actions-runner:latest when building our docker image, it works successfully.
Beta Was this translation helpful? Give feedback.
All reactions