-
Notifications
You must be signed in to change notification settings - Fork 44
build(deps): bump actions/checkout from 4 to 5 #2504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v6 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,7 +9,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v6 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
@@ -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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
@@ -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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
@@ -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 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v6 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
|
||
There was a problem hiding this comment.
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.