Skip to content

Commit 38df656

Browse files
authored
updates (#1119)
* updates * lock file rebase * fix permissions for test action * vulns
1 parent 39a9de0 commit 38df656

File tree

6 files changed

+1426
-1890
lines changed

6 files changed

+1426
-1890
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: dependency review
2+
3+
on: [pull_request]
4+
5+
permissions:
6+
contents: read
7+
pull-requests: write
8+
9+
jobs:
10+
dependency-review:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v4
16+
- name: Perform dependency review
17+
uses: actions/dependency-review-action@v4
18+
with:
19+
fail-on-severity: low
20+
comment-summary-in-pr: on-failure

.github/workflows/test.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@ name: Test
22

33
on:
44
push:
5-
branches: # Array of patterns that match refs/heads
6-
- main # Push events on main branch
7-
pull_request: # Specify a second event with pattern matching
5+
branches: # Array of patterns that match refs/heads
6+
- main # Push events on main branch
7+
pull_request: # Specify a second event with pattern matching
88
env:
99
CI: true
10+
11+
permissions:
12+
contents: read
13+
actions: read
14+
checks: write
15+
1016
jobs:
1117
unit:
1218
runs-on: ubuntu-latest
@@ -34,8 +40,8 @@ jobs:
3440
- run: npm run benchmarks
3541
- name: Coveralls GitHub Action
3642
# Per Actions best practices, SHA is the safest for third party actions
37-
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
38-
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
43+
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.6
44+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
3945
with:
4046
github-token: ${{ secrets.GITHUB_TOKEN }}
4147
flag-name: run-unit-${{ matrix.node-version }}
@@ -47,8 +53,8 @@ jobs:
4753
steps:
4854
- name: Coveralls Finished
4955
# Per Actions best practices, SHA is the safest for third party actions
50-
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.4
51-
uses: coverallsapp/github-action@cfd0633edbd2411b532b808ba7a8b5e04f76d2c8
56+
# https://github.com/coverallsapp/github-action/releases/tag/v2.3.6
57+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
5258
with:
5359
github-token: ${{ secrets.github_token }}
5460
parallel-finished: true

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.0
1+
20.19.0

.prettierrc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,16 @@
22
"singleQuote": true,
33
"printWidth": 120,
44
"trailingComma": "all",
5-
"tabWidth": 4
5+
"tabWidth": 4,
6+
"overrides": [
7+
{
8+
"files": ["*.{yaml,yml}"],
9+
"options": {
10+
"tabWidth": 2,
11+
"useTabs": false,
12+
"singleQuote": true,
13+
"bracketSpacing": true
14+
}
15+
}
16+
]
617
}

documentation/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fast-csv/docs",
3-
"version": "5.0.3",
3+
"version": "5.0.4",
44
"private": true,
55
"scripts": {
66
"start": "docusaurus start --port=3001",
@@ -9,8 +9,8 @@
99
"deploy": "docusaurus deploy"
1010
},
1111
"dependencies": {
12-
"@docusaurus/core": "3.7.0",
13-
"@docusaurus/preset-classic": "3.7.0",
12+
"@docusaurus/core": "3.8.1",
13+
"@docusaurus/preset-classic": "3.8.1",
1414
"classnames": "2.5.1",
1515
"react": "18.3.1",
1616
"react-dom": "18.3.1"

0 commit comments

Comments
 (0)