Skip to content

remote: Duplicate header: "Authorization" error when used in conjunction with actions/checkout v6+ #4272

@pndurette

Description

@pndurette

First off, thanks for your work on this!

We are also hitting the 2nd error mentioned in #4271 (but it's not exactly the same, hence this separate issue).

TL;DR: Thanks to #4271, downgrading to checkout@v5.0.1 fixed it for us.
(Our workflow had worked for over a year before actions/checkout v6.)

The error:

remote: Duplicate header: "Authorization"
  fatal: unable to access 'https://github.com/<org>/<repo>/': The requested URL returned error: 400
  Error: The process '/usr/bin/git' failed with exit code 128

When using:

  • checkout@v6.0.1 + create-pull-request@v8.0.0
  • checkout@v6.0.1 + create-pull-request@v7.0.11
Failing workflow YAML

It's a simple re-usable workflow that runs terraform-docs and creates a PR with the changes, if any.

name: Terraform Docs

on:
  workflow_call:
    inputs:
      find-dir:
        description: |
          The directory where 'terraform-docs' will look for modules to document.
          i.e. the 'find-dir' input of the 'terraform-docs/gh-actions' action.
        required: true
        type: string
      sign-commit-enabled:
        description: "Whether to sign the terraform-docs commit (as github-actions[bot])"
        required: false
        type: boolean
        default: false

permissions: {}

jobs:
  terraform-docs:
    name: Terraform Docs & PR
    runs-on: ubuntu-latest

    permissions:
      contents: write
      pull-requests: write

    steps:
      - name: Checkout
        uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
        with:
          # Always checkout the trusted ref (the base branch or workflow invocation ref)
          ref: ${{ github.ref_name }}

# [Snip..] 

      - name: Create Pull Request
        uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.1
        with:
          base: ${{ github.ref_name }}
          # Use '**/README.md' when find-dir is '.' to avoid invalid './**/README.md' glob
          add-paths: ${{ inputs.find-dir == '.' && '**/README.md' || format('{0}/**/README.md', inputs.find-dir) }}
          sign-commits: ${{ inputs.sign-commit-enabled }}
          commit-message: "chore(docs): update Terraform modules documentation"
          branch: terraform-docs-update
          title: "chore(docs): update Terraform modules documentation"
          body: |
            [Snip..]
Failed run log

This run log is from another repo calling the above workflow. Using Github's runners.

2025-12-18T18:34:34.9842254Z Current runner version: '2.330.0'
2025-12-18T18:34:34.9918771Z ##[group]Runner Image Provisioner
2025-12-18T18:34:34.9920016Z Hosted Compute Agent
2025-12-18T18:34:34.9920833Z Version: 20251211.462
2025-12-18T18:34:34.9922207Z Commit: 6cbad8c2bb55d58165063d031ccabf57e2d2db61
2025-12-18T18:34:34.9923367Z Build Date: 2025-12-11T16:28:49Z
2025-12-18T18:34:34.9924523Z Worker ID: {427b34f5-4fcf-4a46-ae19-d23a5b3b47e8}
2025-12-18T18:34:34.9925907Z ##[endgroup]
2025-12-18T18:34:34.9926767Z ##[group]Operating System
2025-12-18T18:34:34.9927742Z Ubuntu
2025-12-18T18:34:34.9928607Z 24.04.3
2025-12-18T18:34:34.9929424Z LTS
2025-12-18T18:34:34.9930147Z ##[endgroup]
2025-12-18T18:34:34.9931166Z ##[group]Runner Image
2025-12-18T18:34:34.9952637Z Image: ubuntu-24.04
2025-12-18T18:34:34.9953519Z Version: 20251215.174.1
2025-12-18T18:34:34.9955530Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20251215.174/images/ubuntu/Ubuntu2404-Readme.md
2025-12-18T18:34:34.9958339Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20251215.174
2025-12-18T18:34:34.9960150Z ##[endgroup]
2025-12-18T18:34:34.9962422Z ##[group]GITHUB_TOKEN Permissions
2025-12-18T18:34:34.9965610Z Contents: write
2025-12-18T18:34:34.9966562Z Metadata: read
2025-12-18T18:34:34.9967389Z PullRequests: write
2025-12-18T18:34:34.9968418Z ##[endgroup]
2025-12-18T18:34:34.9982306Z Secret source: Actions
2025-12-18T18:34:34.9983587Z Prepare workflow directory
2025-12-18T18:34:35.1025059Z Prepare all required actions
2025-12-18T18:34:35.1132043Z Getting action download info
2025-12-18T18:34:35.5056042Z Download action repository 'actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8' (SHA:8e8c483db84b4bee98b60c0593521ed34d9990e8)
2025-12-18T18:34:35.6066443Z Download action repository 'hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd' (SHA:b9cd54a3c349d3f38e8881555d616ced269862dd)
2025-12-18T18:34:36.4130025Z Download action repository 'terraform-docs/gh-actions@6de6da0cefcc6b4b7a5cbea4d79d97060733093c' (SHA:6de6da0cefcc6b4b7a5cbea4d79d97060733093c)
2025-12-18T18:34:36.7359995Z Download action repository 'peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e' (SHA:271a8d0340265f705b14b6d32b9829c1cb33d45e)
2025-12-18T18:34:37.2785573Z Uses: <org>/<reusable actions repo>/.github/workflows/terraform-docs.yml@ccee0d4465ec665ebfb66faa17f7c383d1744c83
2025-12-18T18:34:37.2791113Z ##[group] Inputs
2025-12-18T18:34:37.2791559Z   find-dir: .
2025-12-18T18:34:37.2792603Z   sign-commit-enabled: true
2025-12-18T18:34:37.2793054Z ##[endgroup]
2025-12-18T18:34:37.2793528Z Complete job name: Terraform Docs / Terraform Docs & PR
2025-12-18T18:34:37.3222090Z ##[group]Pull down action image 'quay.io/terraform-docs/gh-actions:1.4.1'
2025-12-18T18:34:37.3270961Z ##[command]/usr/bin/docker pull quay.io/terraform-docs/gh-actions:1.4.1
2025-12-18T18:34:38.2209177Z 1.4.1: Pulling from terraform-docs/gh-actions
2025-12-18T18:34:38.2702877Z f18232174bc9: Pulling fs layer
2025-12-18T18:34:38.2734914Z 65ae05d976b8: Pulling fs layer
2025-12-18T18:34:38.2735525Z 2bb7c927cb06: Pulling fs layer
2025-12-18T18:34:38.2736036Z 3075d944d422: Pulling fs layer
2025-12-18T18:34:38.2736524Z 0970d40a35ef: Pulling fs layer
2025-12-18T18:34:38.2736990Z 0970d40a35ef: Waiting
2025-12-18T18:34:38.2759338Z 3075d944d422: Waiting
2025-12-18T18:34:38.9895702Z 65ae05d976b8: Verifying Checksum
2025-12-18T18:34:38.9896291Z 65ae05d976b8: Download complete
2025-12-18T18:34:39.4374836Z f18232174bc9: Download complete
2025-12-18T18:34:39.5623536Z f18232174bc9: Pull complete
2025-12-18T18:34:39.6102758Z 65ae05d976b8: Pull complete
2025-12-18T18:34:39.7144420Z 0970d40a35ef: Verifying Checksum
2025-12-18T18:34:39.7152046Z 0970d40a35ef: Download complete
2025-12-18T18:34:42.8965730Z 2bb7c927cb06: Verifying Checksum
2025-12-18T18:34:42.8966655Z 2bb7c927cb06: Download complete
2025-12-18T18:34:43.0773380Z 2bb7c927cb06: Pull complete
2025-12-18T18:34:43.1100372Z 3075d944d422: Download complete
2025-12-18T18:34:43.5140914Z 3075d944d422: Pull complete
2025-12-18T18:34:43.5324919Z 0970d40a35ef: Pull complete
2025-12-18T18:34:43.5416909Z Digest: sha256:b3af46b47a0758f81c989706210ce632a64f00d0a150dca8270465f7f62b8031
2025-12-18T18:34:43.5440311Z Status: Downloaded newer image for quay.io/terraform-docs/gh-actions:1.4.1
2025-12-18T18:34:43.5458301Z quay.io/terraform-docs/gh-actions:1.4.1
2025-12-18T18:34:43.5490555Z ##[endgroup]
2025-12-18T18:34:43.5765619Z ##[group]Run actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
2025-12-18T18:34:43.5766279Z with:
2025-12-18T18:34:43.5766464Z   ref: main
2025-12-18T18:34:43.5766656Z   repository: <org>/<repo>
2025-12-18T18:34:43.5767058Z   token: ***
2025-12-18T18:34:43.5767234Z   ssh-strict: true
2025-12-18T18:34:43.5767413Z   ssh-user: git
2025-12-18T18:34:43.5767594Z   persist-credentials: true
2025-12-18T18:34:43.5767813Z   clean: true
2025-12-18T18:34:43.5768008Z   sparse-checkout-cone-mode: true
2025-12-18T18:34:43.5768236Z   fetch-depth: 1
2025-12-18T18:34:43.5768402Z   fetch-tags: false
2025-12-18T18:34:43.5768605Z   show-progress: true
2025-12-18T18:34:43.5768793Z   lfs: false
2025-12-18T18:34:43.5768956Z   submodules: false
2025-12-18T18:34:43.5769139Z   set-safe-directory: true
2025-12-18T18:34:43.5769535Z ##[endgroup]
2025-12-18T18:34:43.6752039Z Syncing repository: <org>/<repo>
2025-12-18T18:34:43.6754950Z ##[group]Getting Git version info
2025-12-18T18:34:43.6757600Z Working directory is '/home/runner/work/github/github'
2025-12-18T18:34:43.6762281Z [command]/usr/bin/git version
2025-12-18T18:34:43.6847551Z git version 2.52.0
2025-12-18T18:34:43.6874906Z ##[endgroup]
2025-12-18T18:34:43.6888846Z Temporarily overriding HOME='/home/runner/work/_temp/bc692724-b0cf-4e5a-9486-c7828fdb3b09' before making global git config changes
2025-12-18T18:34:43.6892418Z Adding repository directory to the temporary git global config as a safe directory
2025-12-18T18:34:43.6896490Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/github/github
2025-12-18T18:34:43.6941377Z Deleting the contents of '/home/runner/work/github/github'
2025-12-18T18:34:43.6946048Z ##[group]Initializing the repository
2025-12-18T18:34:43.6951346Z [command]/usr/bin/git init /home/runner/work/github/github
2025-12-18T18:34:43.7159980Z hint: Using 'master' as the name for the initial branch. This default branch name
2025-12-18T18:34:43.7161360Z hint: will change to "main" in Git 3.0. To configure the initial branch name
2025-12-18T18:34:43.7163974Z hint: to use in all of your new repositories, which will suppress this warning,
2025-12-18T18:34:43.7167110Z hint: call:
2025-12-18T18:34:43.7169312Z hint:
2025-12-18T18:34:43.7170582Z hint: 	git config --global init.defaultBranch <name>
2025-12-18T18:34:43.7173654Z hint:
2025-12-18T18:34:43.7175081Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2025-12-18T18:34:43.7177044Z hint: 'development'. The just-created branch can be renamed via this command:
2025-12-18T18:34:43.7179384Z hint:
2025-12-18T18:34:43.7179775Z hint: 	git branch -m <name>
2025-12-18T18:34:43.7180174Z hint:
2025-12-18T18:34:43.7180717Z hint: Disable this message with "git config set advice.defaultBranchName false"
2025-12-18T18:34:43.7181606Z Initialized empty Git repository in /home/runner/work/github/github/.git/
2025-12-18T18:34:43.7183333Z [command]/usr/bin/git remote add origin https://github.com/<org>/<repo>
2025-12-18T18:34:43.7218976Z ##[endgroup]
2025-12-18T18:34:43.7221053Z ##[group]Disabling automatic garbage collection
2025-12-18T18:34:43.7223444Z [command]/usr/bin/git config --local gc.auto 0
2025-12-18T18:34:43.7255115Z ##[endgroup]
2025-12-18T18:34:43.7257201Z ##[group]Setting up auth
2025-12-18T18:34:43.7257649Z Removing SSH command configuration
2025-12-18T18:34:43.7262846Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2025-12-18T18:34:43.7297009Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2025-12-18T18:34:43.7712682Z Removing HTTP extra header
2025-12-18T18:34:43.7719349Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2025-12-18T18:34:43.7754358Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2025-12-18T18:34:43.7988864Z Removing includeIf entries pointing to credentials config files
2025-12-18T18:34:43.7991118Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
2025-12-18T18:34:43.8023469Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
2025-12-18T18:34:43.8257849Z [command]/usr/bin/git config --file /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config http.https://github.com/.extraheader AUTHORIZATION: basic ***
2025-12-18T18:34:43.8297969Z [command]/usr/bin/git config --local includeIf.gitdir:/home/runner/work/github/github/.git.path /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:43.8330420Z [command]/usr/bin/git config --local includeIf.gitdir:/home/runner/work/github/github/.git/worktrees/*.path /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:43.8362987Z [command]/usr/bin/git config --local includeIf.gitdir:/github/workspace/.git.path /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:43.8396298Z [command]/usr/bin/git config --local includeIf.gitdir:/github/workspace/.git/worktrees/*.path /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:43.8426107Z ##[endgroup]
2025-12-18T18:34:43.8426993Z ##[group]Fetching the repository
2025-12-18T18:34:43.8436627Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +refs/heads/main*:refs/remotes/origin/main* +refs/tags/main*:refs/tags/main*
2025-12-18T18:34:44.0582264Z From https://github.com/<org>/<repo>
2025-12-18T18:34:44.0584656Z  * [new branch]      main       -> origin/main
2025-12-18T18:34:44.0613161Z ##[endgroup]
2025-12-18T18:34:44.0613815Z ##[group]Determining the checkout info
2025-12-18T18:34:44.0620837Z [command]/usr/bin/git branch --list --remote origin/main
2025-12-18T18:34:44.0645873Z   origin/main
2025-12-18T18:34:44.0651604Z ##[endgroup]
2025-12-18T18:34:44.0660009Z [command]/usr/bin/git sparse-checkout disable
2025-12-18T18:34:44.0851629Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
2025-12-18T18:34:44.0881178Z ##[group]Checking out the ref
2025-12-18T18:34:44.0887181Z [command]/usr/bin/git checkout --progress --force -B main refs/remotes/origin/main
2025-12-18T18:34:44.1051217Z Switched to a new branch 'main'
2025-12-18T18:34:44.1055731Z branch 'main' set up to track 'origin/main'.
2025-12-18T18:34:44.1062696Z ##[endgroup]
2025-12-18T18:34:44.1098668Z [command]/usr/bin/git log -1 --format=%H
2025-12-18T18:34:44.1123405Z 6ce68ab697354c346aec103ff649b37deff34bfa


[Snip...]


2025-12-18T18:34:46.5048824Z ##[group]Run peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e
2025-12-18T18:34:46.5049246Z with:
2025-12-18T18:34:46.5049403Z   base: main
2025-12-18T18:34:46.5049584Z   add-paths: **/README.md
2025-12-18T18:34:46.5049785Z   sign-commits: true
2025-12-18T18:34:46.5050066Z   commit-message: chore(docs): update Terraform modules documentation
2025-12-18T18:34:46.5050407Z   branch: terraform-docs-update
2025-12-18T18:34:46.5050686Z   title: chore(docs): update Terraform modules documentation
2025-12-18T18:34:46.5051640Z   body: This PR was created by the 'Terraform Docs' (`<org>/<repo>/.github/workflows/terraform-docs.yml@refs/heads/main`) workflow.

This PR,
  * Updates Terraform documentation
    (Terraform changes were detected in the `.` directory)

2025-12-18T18:34:46.5052870Z   token: ***
2025-12-18T18:34:46.5053198Z   committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-18T18:34:46.5053686Z   author: pndurette <1653771+pndurette@users.noreply.github.com>
2025-12-18T18:34:46.5054015Z   signoff: false
2025-12-18T18:34:46.5054197Z   delete-branch: false
2025-12-18T18:34:46.5054382Z   draft: false
2025-12-18T18:34:46.5054566Z   maintainer-can-modify: true
2025-12-18T18:34:46.5054767Z env:
2025-12-18T18:34:46.5055062Z   TERRAFORM_CLI_PATH: /home/runner/work/_temp/62a87fc3-80ad-494e-a08e-aac6ec159324
2025-12-18T18:34:46.5055412Z ##[endgroup]
2025-12-18T18:34:46.6459860Z ##[group]Prepare git configuration
2025-12-18T18:34:46.6528239Z [command]/usr/bin/git config --global --name-only --get-regexp safe.directory /home/runner/work/github/github
2025-12-18T18:34:46.6602641Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/github/github
2025-12-18T18:34:46.6638006Z [command]/usr/bin/git config --local --get remote.origin.url
2025-12-18T18:34:46.6676726Z https://github.com/<org>/<repo>
2025-12-18T18:34:46.6695089Z [command]/usr/bin/git config --local --name-only --get-regexp http.https://github.com/.extraheader ^AUTHORIZATION:
2025-12-18T18:34:46.6726081Z ##[endgroup]
2025-12-18T18:34:46.6727890Z ##[group]Determining the base and head repositories
2025-12-18T18:34:46.6749730Z ##[endgroup]
2025-12-18T18:34:46.6750586Z Pull request branch target repository set to <org>/<repo>
2025-12-18T18:34:46.6753618Z ##[group]Configuring credential for HTTPS authentication
2025-12-18T18:34:46.6760262Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2025-12-18T18:34:46.6798198Z [command]/usr/bin/git rev-parse --git-dir
2025-12-18T18:34:46.6821287Z .git
2025-12-18T18:34:46.6843490Z ##[endgroup]
2025-12-18T18:34:46.6844173Z ##[group]Checking the base repository state
2025-12-18T18:34:46.6850302Z [command]/usr/bin/git symbolic-ref HEAD --short
2025-12-18T18:34:46.6878107Z main
2025-12-18T18:34:46.6884818Z Working base is branch 'main'
2025-12-18T18:34:46.6889944Z [command]/usr/bin/git remote prune origin
2025-12-18T18:34:46.7377572Z remote: Duplicate header: "Authorization"
2025-12-18T18:34:46.7378693Z fatal: unable to access 'https://github.com/<org>/<repo>/': The requested URL returned error: 400
2025-12-18T18:34:46.7426307Z ##[error]The process '/usr/bin/git' failed with exit code 128
2025-12-18T18:34:46.7437037Z ##[group]Restore git configuration
2025-12-18T18:34:46.7437875Z [command]/usr/bin/git config --local --name-only --get-regexp http.https://github.com/.extraheader ^AUTHORIZATION:
2025-12-18T18:34:46.7450388Z http.https://github.com/.extraheader
2025-12-18T18:34:46.7461160Z [command]/usr/bin/git config --local --get-regexp http.https://github.com/.extraheader ^AUTHORIZATION:
2025-12-18T18:34:46.7488435Z http.https://github.com/.extraheader AUTHORIZATION: basic ***
2025-12-18T18:34:46.7498581Z [command]/usr/bin/git config --local --unset http.https://github.com/.extraheader ^AUTHORIZATION:
2025-12-18T18:34:46.7532692Z Unset config key 'http.https://github.com/.extraheader'
2025-12-18T18:34:46.7538738Z [command]/usr/bin/git config --global --unset safe.directory /home/runner/work/github/github
2025-12-18T18:34:46.7567029Z ##[endgroup]
2025-12-18T18:34:46.7696370Z Post job cleanup.
2025-12-18T18:34:46.8535789Z [command]/usr/bin/git version
2025-12-18T18:34:46.8576098Z git version 2.52.0
2025-12-18T18:34:46.8613107Z Copying '/home/runner/.gitconfig' to '/home/runner/work/_temp/5bfe30ad-40d4-48c4-b354-2911ed1c6c3f/.gitconfig'
2025-12-18T18:34:46.8623375Z Temporarily overriding HOME='/home/runner/work/_temp/5bfe30ad-40d4-48c4-b354-2911ed1c6c3f' before making global git config changes
2025-12-18T18:34:46.8625039Z Adding repository directory to the temporary git global config as a safe directory
2025-12-18T18:34:46.8630984Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/github/github
2025-12-18T18:34:46.8665288Z Removing SSH command configuration
2025-12-18T18:34:46.8671523Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2025-12-18T18:34:46.8708966Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2025-12-18T18:34:46.8959961Z Removing HTTP extra header
2025-12-18T18:34:46.8965956Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2025-12-18T18:34:46.9005115Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2025-12-18T18:34:46.9246999Z Removing includeIf entries pointing to credentials config files
2025-12-18T18:34:46.9253431Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
2025-12-18T18:34:46.9279123Z includeif.gitdir:/home/runner/work/github/github/.git.path
2025-12-18T18:34:46.9280366Z includeif.gitdir:/home/runner/work/github/github/.git/worktrees/*.path
2025-12-18T18:34:46.9281079Z includeif.gitdir:/github/workspace/.git.path
2025-12-18T18:34:46.9282090Z includeif.gitdir:/github/workspace/.git/worktrees/*.path
2025-12-18T18:34:46.9292761Z [command]/usr/bin/git config --local --get-all includeif.gitdir:/home/runner/work/github/github/.git.path
2025-12-18T18:34:46.9315354Z /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9328212Z [command]/usr/bin/git config --local --unset includeif.gitdir:/home/runner/work/github/github/.git.path /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9367080Z [command]/usr/bin/git config --local --get-all includeif.gitdir:/home/runner/work/github/github/.git/worktrees/*.path
2025-12-18T18:34:46.9390045Z /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9400802Z [command]/usr/bin/git config --local --unset includeif.gitdir:/home/runner/work/github/github/.git/worktrees/*.path /home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9434264Z [command]/usr/bin/git config --local --get-all includeif.gitdir:/github/workspace/.git.path
2025-12-18T18:34:46.9455181Z /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9465628Z [command]/usr/bin/git config --local --unset includeif.gitdir:/github/workspace/.git.path /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9497838Z [command]/usr/bin/git config --local --get-all includeif.gitdir:/github/workspace/.git/worktrees/*.path
2025-12-18T18:34:46.9520311Z /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9531166Z [command]/usr/bin/git config --local --unset includeif.gitdir:/github/workspace/.git/worktrees/*.path /github/runner_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config
2025-12-18T18:34:46.9564524Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
2025-12-18T18:34:46.9792355Z Removing credentials config '/home/runner/work/_temp/git-credentials-aab6a12b-b840-4b17-bcf5-f8ff34769445.config'
2025-12-18T18:34:46.9913436Z Cleaning up orphan processes

Thanks!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions