Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/bump_libraries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
changelog_message="Bump $package to ${{ steps.metadata.outputs.new-version }}"
./scripts/version-increment.sh "$changelog_message"
make version-sync
- uses: stefanzweifel/git-auto-commit-action@v6
- uses: stefanzweifel/git-auto-commit-action@v7
Copy link

Choose a reason for hiding this comment

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

Bug: Git Action Upgrade Breaks PR Workflow

The upgrade to stefanzweifel/git-auto-commit-action@v7 re-enables detached HEAD state detection, which was disabled in v6. This causes the workflow to fail on pull requests, as actions/checkout@v5 typically leaves the repository in a detached state. This breaks automated dependency updates.

Fix in Cursor Fix in Web

with:
commit_message: "Bump libraries and release"

Loading