Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -154,15 +154,15 @@ jobs:
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v4
with:
versionSpec: '5.x'
versionSpec: '6.x'
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gittools/actions/gitversion/setup@v4 requires GitVersion >= 6.1.0 (per linked compatibility table in the PR description), but versionSpec: '6.x' still includes 6.0.*. Consider pinning the minimum explicitly (e.g., 6.1.x) so the workflow can’t ever resolve to an unsupported 6.0 release.

Suggested change
versionSpec: '6.x'
versionSpec: '6.1.x'

Copilot uses AI. Check for mistakes.

- name: Run GitVersion
id: gitversion
uses: gittools/actions/gitversion/execute@v4

- name: Set version env vars
run: |
echo "PACKAGE_VERSION=${{ steps.gitversion.outputs.nuGetVersionV2 }}" >> $GITHUB_ENV
echo "PACKAGE_VERSION=${{ steps.gitversion.outputs.semVer }}" >> $GITHUB_ENV
echo "ASSEMBLY_VERSION=${{ steps.gitversion.outputs.assemblySemVer }}" >> $GITHUB_ENV
echo "FILE_VERSION=${{ steps.gitversion.outputs.assemblySemFileVer }}" >> $GITHUB_ENV

Expand Down
4 changes: 2 additions & 2 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mode: MainLine
workflow: GitHubFlow/v1
tag-prefix: 'v'
commit-message-incrementing: Enabled

major-version-bump-message: '(?m)^[a-z]+(?:\([\w\s\-,/\\]+\))?!:|(?m)^\s*BREAKING CHANGE:'
minor-version-bump-message: '(?m)^feat(?:\([\w\s\-,/\\]+\))?:'
patch-version-bump-message: '(?m)^(?:fix|perf)(?:\([\w\s\-,/\\]+\))?:'
patch-version-bump-message: '(?m)^(?:fix|perf)(?:\([\w\s\-,/\\]+\))?:'
Loading