Skip to content

Commit 99ddffd

Browse files
fix: update critical security dependencies
1 parent e24ff99 commit 99ddffd

File tree

5 files changed

+1431
-1961
lines changed

5 files changed

+1431
-1961
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@v1
43+
uses: github/codeql-action/init@v2
4444
with:
4545
languages: ${{ matrix.language }}
46+
paths-ignore:
47+
- 'src/*.*_test.js'
4648
# If you wish to specify custom queries, you can do so here or in a config file.
4749
# By default, queries listed here will override any specified in a config file.
4850
# Prefix the list here with "+" to use these queries and those in the config file.
@@ -51,7 +53,7 @@ jobs:
5153
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5254
# If this step fails, then you should remove it and run the build manually (see below)
5355
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v1
56+
uses: github/codeql-action/autobuild@v2
5557

5658
# ℹ️ Command-line programs to run using the OS shell.
5759
# 📚 https://git.io/JvXDl
@@ -65,4 +67,4 @@ jobs:
6567
# make release
6668

6769
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v1
70+
uses: github/codeql-action/analyze@v2

.mocharc.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
// Specify "require" for CommonJS
3+
"require": "ts-node/register",
4+
"extensions": ["ts"],
5+
"spec": [
6+
"src/**/*_test.ts"
7+
],
8+
"watch-files": [
9+
"src"
10+
]
11+
}

0 commit comments

Comments
 (0)