-
Notifications
You must be signed in to change notification settings - Fork 8
Bump actions/checkout from 5 to 6 #153
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
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 |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ jobs: | |
| name: Build changelog | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v5 | ||
| - 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. Excellent upgrade to - uses: actions/checkout@v6 |
||
|
|
||
| - name: Run Changelog CI | ||
| uses: saadmk11/changelog-ci@v1.2.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,7 +19,7 @@ jobs: | |
| frontend_version: ${{ steps.version_check.outputs.frontend_version }} | ||
| steps: | ||
| - name: Check out the repo | ||
| uses: actions/checkout@v5 | ||
| uses: actions/checkout@v6 | ||
| with: | ||
| fetch-depth: 2 # Need at least 2 commits to compare | ||
|
Comment on lines
21
to
24
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. Great job updating all instances of - name: Check out the repo
uses: actions/checkout@v6
with:
fetch-depth: 2 # Need at least 2 commits to compare |
||
|
|
||
|
|
@@ -91,7 +91,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out the repo | ||
| uses: actions/checkout@v5 | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Docker Buildx | ||
| uses: docker/setup-buildx-action@v3 | ||
|
|
@@ -129,7 +129,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Check out the repo | ||
| uses: actions/checkout@v5 | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Node.js for Frontend build | ||
| uses: actions/setup-node@v6 | ||
|
|
||
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.
Good update! Upgrading from
actions/checkout@v5toactions/checkout@v6is recommended as it includes security improvements and bug fixes. The v6 version uses Node.js 20 runtime which is more secure and performant than the Node.js 16 runtime used in v5.