Skip to content
Closed
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/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ jobs:
- uses: github/codeql-action/init@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
with:
languages: ${{ matrix.language }}
- uses: github/codeql-action/autobuild@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
- uses: github/codeql-action/autobuild@db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28 # v4.37.8

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

🟡 CodeQL action steps left on mismatched versions

The autobuild step is bumped to v4.37.8 while init and analyze stay pinned at v4.37.0. The CodeQL Action requires all three steps to run the same release, so this mix can break the analysis job.

Prompt for agents
The codeql.yml workflow uses github/codeql-action init, autobuild, and analyze. This PR bumped only autobuild to v4.37.8 (SHA db488ddef3bf6cb639b32c2e9a7c0a7ea8271d28) while init and analyze remain on v4.37.0 (SHA 99df26d4f13ea111d4ec1a7dddef6063f76b97e9). The CodeQL Action expects all of its sub-actions to be from the same release; mismatched versions are unsupported and can cause the analysis to fail. Update init and analyze to the same v4.37.8 SHA so all three steps stay in sync.
Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

- uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
Loading