Skip to content
Merged
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/global-run-codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: go
languages: go, actions
Copy link

Copilot AI Jul 10, 2025

Choose a reason for hiding this comment

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

[nitpick] Consider using YAML array syntax for the languages list instead of comma-separated string. Use languages: [go, actions] for better readability and consistency with YAML conventions.

Suggested change
languages: go, actions
languages: [go, actions]

Copilot uses AI. Check for mistakes.

- name: Autobuild
uses: github/codeql-action/autobuild@v3
Expand Down
Loading