Skip to content

Commit 046c347

Browse files
authored
Merge pull request #411 from NodeSecure/security-maintenance
Security maintenance
2 parents f992c27 + 741bb7e commit 046c347

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ updates:
55
versioning-strategy: widen
66
schedule:
77
interval: "weekly"
8+
cooldown:
9+
default-days: 5
810
groups:
911
dependencies:
1012
dependency-type: "production"
@@ -14,6 +16,8 @@ updates:
1416
directory: "/"
1517
schedule:
1618
interval: "monthly"
19+
cooldown:
20+
default-days: 5
1721
groups:
1822
github-actions:
1923
patterns:

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 22
2323

2424
- name: Install dependencies
25-
run: npm install
25+
run: npm install --ignore-scripts
2626

2727
- name: Build monorepo
2828
run: npm run build --if-present

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
node-version: ${{ matrix.node-version }}
2929
- name: Install dependencies
30-
run: npm install
30+
run: npm install --ignore-scripts
3131
- name: Build typescript sources
3232
run: npm run build
3333
- name: Run tests

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
package-lock=false
2+
save-exact=true
3+
ignore-scripts=true

0 commit comments

Comments
 (0)