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 code-scanning/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

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

This PR only updates actions/checkout from v4 to v5 in this single file, but there are 150+ other workflow files across the repository (in ci/, code-scanning/, deployments/, pages/, automation/, and .github/workflows/ directories) that still use actions/checkout@v4. This creates inconsistency across the starter workflows.

For a comprehensive upgrade, all instances should be updated together to maintain consistency. Users copying these starter workflows would encounter mixed versions, which could be confusing. Either all workflows should be updated in this PR, or this should be documented as an intentional phased rollout approach.

Suggested change
- name: Checkout repository
- name: Checkout repository
# NOTE: This workflow intentionally uses actions/checkout@v5 as part of a phased
# rollout of the new major version. Other workflows in this repository may still
# reference actions/checkout@v4 until they are updated in subsequent changes.

Copilot uses AI. Check for mistakes.
uses: actions/checkout@v4
uses: actions/checkout@v5

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand Down
Loading