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/hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
pages: write
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
fetch-depth: 0
Comment on lines +15 to 18

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 | Confidence: High

The PR updates actions/checkout from v6 to v7. According to the upstream changelog, the primary behavioral change in v7 is blocking checkout of fork PRs for pull_request_target and workflow_run triggers. The workflow in this repository triggers only on push to main, so that change does not affect this workflow. No other breaking changes are evident from the release notes. Therefore, the update is safe and keeps the workflow aligned with the latest upstream fixes and hardening. As a major version bump, a manual verification that no other workflows in the repository use affected trigger events is recommended, but with the provided context none are present.

Expand Down