Skip to content
Open
Show file tree
Hide file tree
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/deleted-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Detect deleted files
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

You updated the checkout action to v6 here. Ensure your runners meet the minimum compatible runner version (v2.327.1+ for v5+, per release notes) and that any assumptions about checkout behavior (fetch-depth, LFS, submodules) are explicit if required.


- name: Get changed docs md files
id: changed-files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

Checkout bumped to v6 — same note: verify runner compatibility and submodule/fetch behavior if this job expects full history or specific refs.

with:
token: ${{ secrets.DEPLOYMENT_PERSONAL_ACCESS_TOKEN }}
submodules: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/readability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo with history
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: Rebilly/lexi@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

Checkout bumped to v6 for scheduled jobs. Ensure any actions consuming the workspace are compatible with checkout v6 and that self-hosted runners are upgraded if used.


- name: Check for broken links
id: lychee
Expand All @@ -34,7 +34,7 @@ jobs:
OUTPUT_FILE: ${{ github.workspace }}/supported-tools-report.txt
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

Another checkout update to v6 in this workflow — confirm runner version and behavior expectations before merging.


- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
OUTPUT_FILE: ${{ github.workspace }}/security-tools-report.txt
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

And here — checkout moved to v6. Review downstream steps that may depend on previous checkout semantics (e.g., caching, LFS, submodules).


- name: Set up Python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Compress images
id: calibre
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
Copy link
Contributor

Choose a reason for hiding this comment

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

Value updated to actions/checkout@v6. Confirm token/submodule settings remain appropriate and runners meet the required minimum version.

with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: false
Expand Down
Loading