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
It seems that the default behavior of persist-credentials:true is generally a security issue (actions/checkout#485). We should be disabling it in all of our workflows. Some jobs might fail if they were depending on this persisted value. The solution would be to define it in the job's environment, e.g.:
- name: Do somethingrun: echo somethingenv:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
For more info, take a look at #1848 where this problem was found.