-
-
Notifications
You must be signed in to change notification settings - Fork 13
Update GitHub Action Versions #351
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: main
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -31,7 +31,7 @@ jobs: | |||||
| env: | ||||||
| SKIP_PREFLIGHT_CHECK: true | ||||||
| steps: | ||||||
| - uses: actions/checkout@v4.1.1 | ||||||
| - uses: actions/checkout@v4.1.7 | ||||||
| with: | ||||||
| ref: ${{ github.head_ref || github.ref }} | ||||||
|
|
||||||
|
|
@@ -51,7 +51,7 @@ jobs: | |||||
| - name: 'Report Coverage' | ||||||
| if: always() | ||||||
| continue-on-error: true | ||||||
| uses: davelosert/vitest-coverage-report-action@v2 | ||||||
| uses: davelosert/vitest-coverage-report-action@v2.5.1 | ||||||
|
||||||
| uses: davelosert/vitest-coverage-report-action@v2.5.1 | |
| uses: davelosert/vitest-coverage-report-action@v2 |
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.
[nitpick] Using a specific patch version (v3.0.0) for markdownlint-problem-matcher while other actions use major version tags creates inconsistent version pinning strategy. Consider using
@v3to automatically receive patch and minor updates like the original@v2pattern, or document why this action requires exact version pinning.