We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Previous config:
- name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Install GitVersion uses: gittools/actions/gitversion/setup@v0 with: versionSpec: "5.x" - name: Determine Version id: gitversion uses: gittools/actions/gitversion/execute@v0 with: useConfigFile: true
Gitversion now errors with "unsupported extension name extensions.worktreeconfig"
I was able to fix it with:
uses: actions/checkout@v4 with: fetch-depth: 0 ssh-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: fix git run: | git config --unset-all extensions.worktreeconfig || true git config --global --list - name: Install GitVersion uses: gittools/actions/gitversion/setup@v0 with: versionSpec: "5.x" - name: Determine Version id: gitversion uses: gittools/actions/gitversion/execute@v0 with: useConfigFile: true
The text was updated successfully, but these errors were encountered:
extensions.worktreeConfig
sparse-checkout
Workaround: pin workflows to actions/checkout@v4.1.1
actions/checkout@v4.1.1
Proposed fix: #1692
Sorry, something went wrong.
We have created release v4.1.4 and marked it as pre-release. Absent any other issues, we plan to promote v4.1.4 to v4 and latest by end-of-week.
v4.1.4
v4
latest
v4 and latest now point to release v4.1.4
No branches or pull requests
Previous config:
Gitversion now errors with "unsupported extension name extensions.worktreeconfig"
I was able to fix it with:
The text was updated successfully, but these errors were encountered: