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
6 changes: 3 additions & 3 deletions .github/workflows/dependabot-secure-flow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v4
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

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

The fix is incomplete. While this file has been updated to use actions/checkout@v4, there are 8 other workflow files in the repository that still use the non-existent actions/checkout@v6:

  1. .github/workflows/add-source.yml (line 16)
  2. .github/workflows/codeql.yml (line 60)
  3. .github/workflows/deploy-pages.yml (line 33)
  4. .github/workflows/manage-subscriber.yml (line 16)
  5. .github/workflows/self-maintenance.yml (line 20)
  6. .github/workflows/summary.yml (line 17)
  7. .github/workflows/sync-to-action-repo.yaml (lines 22 and 27)
  8. .github/workflows/update-ai-pulse.yml (line 121)

All of these occurrences need to be updated to actions/checkout@v4 to fully resolve the issue described in the PR.

Copilot uses AI. Check for mistakes.
with:
fetch-depth: 0

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v4
with:
ref: security
fetch-depth: 0
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
Loading