mongodb-redact 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,74 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: ["master"]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: ["master"]
20
+ schedule:
21
+ - cron: "30 14 * * 4"
22
+
23
+ jobs:
24
+ analyze:
25
+ name: Analyze
26
+ runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
27
+ timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
28
+ permissions:
29
+ actions: read
30
+ contents: read
31
+ security-events: write
32
+
33
+ strategy:
34
+ fail-fast: false
35
+ matrix:
36
+ language: ["javascript"]
37
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
38
+ # Use only 'java' to analyze code written in Java, Kotlin or both
39
+ # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
40
+ # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
41
+
42
+ steps:
43
+ - name: Checkout repository
44
+ uses: actions/checkout@v3
45
+
46
+ # Initializes the CodeQL tools for scanning.
47
+ - name: Initialize CodeQL
48
+ uses: github/codeql-action/init@v2
49
+ with:
50
+ languages: ${{ matrix.language }}
51
+ # If you wish to specify custom queries, you can do so here or in a config file.
52
+ # By default, queries listed here will override any specified in a config file.
53
+ # Prefix the list here with "+" to use these queries and those in the config file.
54
+
55
+ # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
56
+ # queries: security-extended,security-and-quality
57
+ config: |
58
+ paths-ignore:
59
+ - '**/*.test.js'
60
+ - '**/*.spec.js'
61
+ - '**/*.test.ts'
62
+ - '**/*.spec.ts'
63
+ - '**/*.test.tsx'
64
+ - '**/*.spec.tsx'
65
+
66
+ # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
67
+ # If this step fails, then you should remove it and run the build manually (see below)
68
+ - name: Autobuild
69
+ uses: github/codeql-action/autobuild@v2
70
+
71
+ - name: Perform CodeQL Analysis
72
+ uses: github/codeql-action/analyze@v2
73
+ with:
74
+ category: "/language:${{matrix.language}}"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongodb-redact",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Remove potentially sensitive information from objects without changing the shape.",
5
5
  "scripts": {
6
6
  "check": "mongodb-js-precommit",