>>>>> Steinar Bang <[email protected]>: > The downgrade of actions/checkout to v5.0.1 is because I encountered > this issue when introducing s4u/setup-maven-action > https://github.com/actions/checkout/issues/2299
For people ending here after a google, please see this: https://github.com/actions/checkout/issues/2299#issuecomment-3733280837 It is possible to remove the dependency on an old actions/checkout version by adding the config: with: persist-credentials: false I changed this steps: - uses: actions/[email protected] to this steps: - uses: actions/[email protected] with: persist-credentials: false in the github actions files, and the duplicated Authorization bug in git wasn't trigged and the github actions builds ran without errors.
