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/assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- uses: pozil/auto-assign-issue@v1.13.0
- uses: pozil/auto-assign-issue@v2.0.0
if: github.actor != 'dependabot[bot]'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
SKIP_PREFLIGHT_CHECK: true
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7
with:
ref: ${{ inputs.sha }}
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github_actions_version_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push_code_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7

- name: Install compatible Nodejs version
id: setup-node
uses: ./.github/actions/setup-node

- name: Install Deps
run: npm install
- uses: xt0rted/markdownlint-problem-matcher@v2
- uses: xt0rted/markdownlint-problem-matcher@v3.0.0
Copy link

Copilot AI Nov 27, 2025

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 @v3 to automatically receive patch and minor updates like the original @v2 pattern, or document why this action requires exact version pinning.

Suggested change
- uses: xt0rted/markdownlint-problem-matcher@v3.0.0
- uses: xt0rted/markdownlint-problem-matcher@v3

Copilot uses AI. Check for mistakes.
- run: npm run lint:markdown
continue-on-error: true
- name: eslint
uses: reviewdog/action-eslint@v1.20.0
uses: reviewdog/action-eslint@v1.31.0
with:
reporter: github-pr-review # Change reporter.
eslint_flags: src/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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
Copy link

Copilot AI Nov 27, 2025

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 (v2.5.1) for vitest-coverage-report-action while the previous version used @v2 (major version tag) creates inconsistent version pinning strategy. Consider using @v2 to automatically receive patch and minor updates, or document why this action requires exact version pinning.

Suggested change
uses: davelosert/vitest-coverage-report-action@v2.5.1
uses: davelosert/vitest-coverage-report-action@v2

Copilot uses AI. Check for mistakes.
with:
json-summary-path: './out/coverage-summary.json'
json-final-path: ./out/coverage-final.json
Expand Down