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.2.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.2.2
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.2.2
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.2.2

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

Copy link

Choose a reason for hiding this comment

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

⚠️ Potential issue

Remove trailing spaces to satisfy YAML linting.
This line has trailing whitespace, which triggers trailing-spaces errors. Please remove the extra spaces at the end of the uses: line.

🧰 Tools
🪛 YAMLlint (1.37.1)

[error] 40-40: trailing spaces

(trailing-spaces)

🤖 Prompt for AI Agents
In .github/workflows/push_code_linting.yml at line 40, there are trailing spaces
at the end of the uses: line. Remove all extra spaces after the text on this
line to comply with YAML linting rules and eliminate the trailing-spaces error.

- name: Install Deps
run: npm install
- uses: xt0rted/markdownlint-problem-matcher@v2
- uses: xt0rted/markdownlint-problem-matcher@v3.0.0
- run: npm run lint:markdown
continue-on-error: true
- name: eslint
uses: reviewdog/action-eslint@v1.20.0
uses: reviewdog/action-eslint@v1.33.2
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.2.2
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.8.2
with:
json-summary-path: './out/coverage-summary.json'
json-final-path: ./out/coverage-final.json
Expand Down
Loading