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
The format of the env var `ACTIONS_RUNTIME_TOKEN` in actions jobs changed with
/pull/28885 to be a JWT. Since it was a JWT, the OAuth
parsing logic attempted to parse it as an OAuth token, and would
return user not found, instead of falling back to look up the running
task and assigning it to the actions user.
This restores that functionality by parsing Actions JWTs first, and
then attempting to parse OAUTH JWTs. The code to parse potential old
`ACTION_RUNTIME_TOKEN` was kept in case someone is running an older
version of act_runner that doesn't support the Actions JWT.
0 commit comments