Skip to content

Commit 82151a4

Browse files
authored
Merge branch 'main' into copilot/add-content-security-policy-error-handling
2 parents 72fbe6b + 991f555 commit 82151a4

4 files changed

Lines changed: 45 additions & 10 deletions

File tree

.github/dependabot.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@ updates:
33
- package-ecosystem: 'npm'
44
directory: '/'
55
schedule:
6-
interval: 'monthly'
6+
interval: 'weekly'
77
target-branch: 'main'
8-
open-pull-requests-limit: 5
8+
open-pull-requests-limit: 10
9+
groups:
10+
patch-updates:
11+
update-types:
12+
- 'patch'
13+
minor-updates:
14+
update-types:
15+
- 'minor'
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Security Audit
2+
3+
on:
4+
schedule:
5+
- cron: '0 8 * * 1'
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
audit:
13+
runs-on: ubuntu-latest
14+
timeout-minutes: 10
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Use Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: '22'
23+
24+
- name: Install dependencies
25+
run: npm install
26+
27+
- name: Security audit
28+
run: npm audit --audit-level=high --omit=dev

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"ethers": "^6.8.1",
7575
"hammerjs": "^2.0.8",
7676
"immutable": "^4.0.0-rc.14",
77-
"lodash-es": "^4.17.21",
77+
"lodash-es": "^4.18.1",
7878
"material-design-icons-iconfont": "^6.1.0",
7979
"ng-circle-progress": "^1.7.1",
8080
"ngx-joyride": "^2.5.0",

0 commit comments

Comments
 (0)