homebridge-securitysystem 7.4.0 â 7.5.0-beta.2
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.
- package/.eslintrc.js +16 -16
- package/.github/FUNDING.yml +2 -2
- package/.github/ISSUE_TEMPLATE/bug_report.yml +46 -46
- package/.github/ISSUE_TEMPLATE/feature-request.yml +17 -17
- package/.github/ISSUE_TEMPLATE/questions-answers.yml +40 -40
- package/.github/dependabot.yml +19 -19
- package/.github/release.yml +36 -36
- package/.github/workflows/codeql.yml +76 -76
- package/.github/workflows/create-release.yml +80 -82
- package/.github/workflows/create-version.yml +52 -52
- package/.github/workflows/dependency-review.yml +24 -24
- package/.github/workflows/install-package.yml +29 -29
- package/.github/workflows/stale.yml +26 -26
- package/.vscode/settings.json +12 -12
- package/CODE_OF_CONDUCT.md +128 -128
- package/CONTRIBUTING.md +5 -5
- package/LICENSE +21 -21
- package/README.md +47 -47
- package/SECURITY.md +12 -12
- package/config.schema.json +859 -835
- package/package.json +52 -52
- package/sounds/README +22 -22
- package/src/index.js +2428 -2418
- package/src/utils/options.js +387 -368
package/.eslintrc.js
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
module.exports = {
|
|
2
|
-
env: {
|
|
3
|
-
browser: true,
|
|
4
|
-
commonjs: true,
|
|
5
|
-
es2021: true,
|
|
6
|
-
},
|
|
7
|
-
extends: "eslint:recommended",
|
|
8
|
-
parserOptions: {
|
|
9
|
-
ecmaVersion: "latest",
|
|
10
|
-
},
|
|
11
|
-
rules: {},
|
|
12
|
-
globalVariables: {
|
|
13
|
-
process: "readonly",
|
|
14
|
-
_dirname: "readonly",
|
|
15
|
-
},
|
|
16
|
-
};
|
|
1
|
+
module.exports = {
|
|
2
|
+
env: {
|
|
3
|
+
browser: true,
|
|
4
|
+
commonjs: true,
|
|
5
|
+
es2021: true,
|
|
6
|
+
},
|
|
7
|
+
extends: "eslint:recommended",
|
|
8
|
+
parserOptions: {
|
|
9
|
+
ecmaVersion: "latest",
|
|
10
|
+
},
|
|
11
|
+
rules: {},
|
|
12
|
+
globalVariables: {
|
|
13
|
+
process: "readonly",
|
|
14
|
+
_dirname: "readonly",
|
|
15
|
+
},
|
|
16
|
+
};
|
package/.github/FUNDING.yml
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
github: MiguelRipoll23
|
|
2
|
-
custom: ["https://www.paypal.me/miguelripoll23"]
|
|
1
|
+
github: MiguelRipoll23
|
|
2
|
+
custom: ["https://www.paypal.me/miguelripoll23"]
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
name: Bug Report
|
|
2
|
-
description: File a bug report
|
|
3
|
-
labels: [bug]
|
|
4
|
-
assignees:
|
|
5
|
-
- MiguelRipoll23
|
|
6
|
-
body:
|
|
7
|
-
- type: markdown
|
|
8
|
-
attributes:
|
|
9
|
-
value: |
|
|
10
|
-
Thanks for taking the time to fill out this bug report!
|
|
11
|
-
- type: input
|
|
12
|
-
id: plugin-version
|
|
13
|
-
attributes:
|
|
14
|
-
label: Plugin version
|
|
15
|
-
description: Installed version of the plugin
|
|
16
|
-
placeholder: 1.0.0
|
|
17
|
-
validations:
|
|
18
|
-
required: true
|
|
19
|
-
- type: textarea
|
|
20
|
-
id: plugin-configuration
|
|
21
|
-
attributes:
|
|
22
|
-
label: Plugin configuration
|
|
23
|
-
description: Configuration of the plugin
|
|
24
|
-
validations:
|
|
25
|
-
required: true
|
|
26
|
-
- type: input
|
|
27
|
-
id: homebridge-version
|
|
28
|
-
attributes:
|
|
29
|
-
label: Homebridge version
|
|
30
|
-
description: Installed version of Homebridge
|
|
31
|
-
placeholder: 1.0.0
|
|
32
|
-
validations:
|
|
33
|
-
required: true
|
|
34
|
-
- type: textarea
|
|
35
|
-
id: what-happened
|
|
36
|
-
attributes:
|
|
37
|
-
label: What happened?
|
|
38
|
-
description: A description of the bug found plus the steps to reproduce the issue
|
|
39
|
-
validations:
|
|
40
|
-
required: true
|
|
41
|
-
- type: textarea
|
|
42
|
-
id: log
|
|
43
|
-
attributes:
|
|
44
|
-
label: Relevant log output
|
|
45
|
-
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
46
|
-
render: bash
|
|
1
|
+
name: Bug Report
|
|
2
|
+
description: File a bug report
|
|
3
|
+
labels: [bug]
|
|
4
|
+
assignees:
|
|
5
|
+
- MiguelRipoll23
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for taking the time to fill out this bug report!
|
|
11
|
+
- type: input
|
|
12
|
+
id: plugin-version
|
|
13
|
+
attributes:
|
|
14
|
+
label: Plugin version
|
|
15
|
+
description: Installed version of the plugin
|
|
16
|
+
placeholder: 1.0.0
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: plugin-configuration
|
|
21
|
+
attributes:
|
|
22
|
+
label: Plugin configuration
|
|
23
|
+
description: Configuration of the plugin
|
|
24
|
+
validations:
|
|
25
|
+
required: true
|
|
26
|
+
- type: input
|
|
27
|
+
id: homebridge-version
|
|
28
|
+
attributes:
|
|
29
|
+
label: Homebridge version
|
|
30
|
+
description: Installed version of Homebridge
|
|
31
|
+
placeholder: 1.0.0
|
|
32
|
+
validations:
|
|
33
|
+
required: true
|
|
34
|
+
- type: textarea
|
|
35
|
+
id: what-happened
|
|
36
|
+
attributes:
|
|
37
|
+
label: What happened?
|
|
38
|
+
description: A description of the bug found plus the steps to reproduce the issue
|
|
39
|
+
validations:
|
|
40
|
+
required: true
|
|
41
|
+
- type: textarea
|
|
42
|
+
id: log
|
|
43
|
+
attributes:
|
|
44
|
+
label: Relevant log output
|
|
45
|
+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
|
|
46
|
+
render: bash
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
name: Feature Request
|
|
2
|
-
description: Suggest a new feature
|
|
3
|
-
labels: [enhancement]
|
|
4
|
-
assignees:
|
|
5
|
-
- MiguelRipoll23
|
|
6
|
-
body:
|
|
7
|
-
- type: markdown
|
|
8
|
-
attributes:
|
|
9
|
-
value: |
|
|
10
|
-
Thanks for taking the time to suggest new features!
|
|
11
|
-
- type: textarea
|
|
12
|
-
id: feature-description
|
|
13
|
-
attributes:
|
|
14
|
-
label: What are you missing?
|
|
15
|
-
description: A description of the feature suggested to be added
|
|
16
|
-
validations:
|
|
17
|
-
required: true
|
|
1
|
+
name: Feature Request
|
|
2
|
+
description: Suggest a new feature
|
|
3
|
+
labels: [enhancement]
|
|
4
|
+
assignees:
|
|
5
|
+
- MiguelRipoll23
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for taking the time to suggest new features!
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: feature-description
|
|
13
|
+
attributes:
|
|
14
|
+
label: What are you missing?
|
|
15
|
+
description: A description of the feature suggested to be added
|
|
16
|
+
validations:
|
|
17
|
+
required: true
|
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
name: Questions & Answers
|
|
2
|
-
description: Get an answer
|
|
3
|
-
labels: [question]
|
|
4
|
-
assignees:
|
|
5
|
-
- MiguelRipoll23
|
|
6
|
-
body:
|
|
7
|
-
- type: markdown
|
|
8
|
-
attributes:
|
|
9
|
-
value: |
|
|
10
|
-
Thanks for taking the time to learn about this plugin!
|
|
11
|
-
- type: input
|
|
12
|
-
id: plugin-version
|
|
13
|
-
attributes:
|
|
14
|
-
label: Plugin version
|
|
15
|
-
description: Installed version of the plugin
|
|
16
|
-
placeholder: 1.0.0
|
|
17
|
-
validations:
|
|
18
|
-
required: true
|
|
19
|
-
- type: textarea
|
|
20
|
-
id: plugin-configuration
|
|
21
|
-
attributes:
|
|
22
|
-
label: Plugin configuration
|
|
23
|
-
description: Configuration of the plugin
|
|
24
|
-
validations:
|
|
25
|
-
required: true
|
|
26
|
-
- type: input
|
|
27
|
-
id: homebridge-version
|
|
28
|
-
attributes:
|
|
29
|
-
label: Homebridge version
|
|
30
|
-
description: Installed version of Homebridge
|
|
31
|
-
placeholder: 1.0.0
|
|
32
|
-
validations:
|
|
33
|
-
required: true
|
|
34
|
-
- type: textarea
|
|
35
|
-
id: what-question
|
|
36
|
-
attributes:
|
|
37
|
-
label: What's your question?
|
|
38
|
-
description: A description of the question using your use case and expected behavior
|
|
39
|
-
validations:
|
|
40
|
-
required: true
|
|
1
|
+
name: Questions & Answers
|
|
2
|
+
description: Get an answer
|
|
3
|
+
labels: [question]
|
|
4
|
+
assignees:
|
|
5
|
+
- MiguelRipoll23
|
|
6
|
+
body:
|
|
7
|
+
- type: markdown
|
|
8
|
+
attributes:
|
|
9
|
+
value: |
|
|
10
|
+
Thanks for taking the time to learn about this plugin!
|
|
11
|
+
- type: input
|
|
12
|
+
id: plugin-version
|
|
13
|
+
attributes:
|
|
14
|
+
label: Plugin version
|
|
15
|
+
description: Installed version of the plugin
|
|
16
|
+
placeholder: 1.0.0
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
- type: textarea
|
|
20
|
+
id: plugin-configuration
|
|
21
|
+
attributes:
|
|
22
|
+
label: Plugin configuration
|
|
23
|
+
description: Configuration of the plugin
|
|
24
|
+
validations:
|
|
25
|
+
required: true
|
|
26
|
+
- type: input
|
|
27
|
+
id: homebridge-version
|
|
28
|
+
attributes:
|
|
29
|
+
label: Homebridge version
|
|
30
|
+
description: Installed version of Homebridge
|
|
31
|
+
placeholder: 1.0.0
|
|
32
|
+
validations:
|
|
33
|
+
required: true
|
|
34
|
+
- type: textarea
|
|
35
|
+
id: what-question
|
|
36
|
+
attributes:
|
|
37
|
+
label: What's your question?
|
|
38
|
+
description: A description of the question using your use case and expected behavior
|
|
39
|
+
validations:
|
|
40
|
+
required: true
|
package/.github/dependabot.yml
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
-
# package ecosystems to update and where the package manifests are located.
|
|
3
|
-
# Please see the documentation for all configuration options:
|
|
4
|
-
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
-
|
|
6
|
-
version: 2
|
|
7
|
-
updates:
|
|
8
|
-
- package-ecosystem: "github-actions"
|
|
9
|
-
directory: "/"
|
|
10
|
-
schedule:
|
|
11
|
-
interval: "daily"
|
|
12
|
-
|
|
13
|
-
- package-ecosystem: npm
|
|
14
|
-
directory: "/"
|
|
15
|
-
schedule:
|
|
16
|
-
interval: daily
|
|
17
|
-
time: "18:00"
|
|
18
|
-
timezone: Europe/Madrid
|
|
19
|
-
open-pull-requests-limit: 10
|
|
1
|
+
# To get started with Dependabot version updates, you'll need to specify which
|
|
2
|
+
# package ecosystems to update and where the package manifests are located.
|
|
3
|
+
# Please see the documentation for all configuration options:
|
|
4
|
+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
|
5
|
+
|
|
6
|
+
version: 2
|
|
7
|
+
updates:
|
|
8
|
+
- package-ecosystem: "github-actions"
|
|
9
|
+
directory: "/"
|
|
10
|
+
schedule:
|
|
11
|
+
interval: "daily"
|
|
12
|
+
|
|
13
|
+
- package-ecosystem: npm
|
|
14
|
+
directory: "/"
|
|
15
|
+
schedule:
|
|
16
|
+
interval: daily
|
|
17
|
+
time: "18:00"
|
|
18
|
+
timezone: Europe/Madrid
|
|
19
|
+
open-pull-requests-limit: 10
|
package/.github/release.yml
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
changelog:
|
|
2
|
-
exclude:
|
|
3
|
-
labels:
|
|
4
|
-
- ignore-for-release
|
|
5
|
-
|
|
6
|
-
categories:
|
|
7
|
-
- title: âĸī¸ Security
|
|
8
|
-
labels:
|
|
9
|
-
- security
|
|
10
|
-
- vulnerability
|
|
11
|
-
|
|
12
|
-
- title: đĨ Breaking Changes
|
|
13
|
-
labels:
|
|
14
|
-
- breaking
|
|
15
|
-
- breaking-change
|
|
16
|
-
|
|
17
|
-
- title: đ New Features
|
|
18
|
-
labels:
|
|
19
|
-
- feature
|
|
20
|
-
|
|
21
|
-
- title: đ
Enhancements
|
|
22
|
-
labels:
|
|
23
|
-
- enhancement
|
|
24
|
-
|
|
25
|
-
- title: đ Bug Fixes
|
|
26
|
-
labels:
|
|
27
|
-
- bug
|
|
28
|
-
- bugfix
|
|
29
|
-
|
|
30
|
-
- title: đĻ Dependencies
|
|
31
|
-
labels:
|
|
32
|
-
- dependencies
|
|
33
|
-
|
|
34
|
-
- title:
|
|
35
|
-
labels:
|
|
36
|
-
- "*"
|
|
1
|
+
changelog:
|
|
2
|
+
exclude:
|
|
3
|
+
labels:
|
|
4
|
+
- ignore-for-release
|
|
5
|
+
|
|
6
|
+
categories:
|
|
7
|
+
- title: âĸī¸ Security
|
|
8
|
+
labels:
|
|
9
|
+
- security
|
|
10
|
+
- vulnerability
|
|
11
|
+
|
|
12
|
+
- title: đĨ Breaking Changes
|
|
13
|
+
labels:
|
|
14
|
+
- breaking
|
|
15
|
+
- breaking-change
|
|
16
|
+
|
|
17
|
+
- title: đ New Features
|
|
18
|
+
labels:
|
|
19
|
+
- feature
|
|
20
|
+
|
|
21
|
+
- title: đ
Enhancements
|
|
22
|
+
labels:
|
|
23
|
+
- enhancement
|
|
24
|
+
|
|
25
|
+
- title: đ Bug Fixes
|
|
26
|
+
labels:
|
|
27
|
+
- bug
|
|
28
|
+
- bugfix
|
|
29
|
+
|
|
30
|
+
- title: đĻ Dependencies
|
|
31
|
+
labels:
|
|
32
|
+
- dependencies
|
|
33
|
+
|
|
34
|
+
- title: đĒ Other Changes
|
|
35
|
+
labels:
|
|
36
|
+
- "*"
|
|
@@ -1,76 +1,76 @@
|
|
|
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: ["main"]
|
|
17
|
-
paths-ignore:
|
|
18
|
-
- "**.md"
|
|
19
|
-
pull_request:
|
|
20
|
-
types: [opened, reopened, synchronize, ready_for_review]
|
|
21
|
-
# The branches below must be a subset of the branches above
|
|
22
|
-
branches: ["main"]
|
|
23
|
-
paths-ignore:
|
|
24
|
-
- "**.md"
|
|
25
|
-
schedule:
|
|
26
|
-
- cron: "37 23 * * 5"
|
|
27
|
-
|
|
28
|
-
jobs:
|
|
29
|
-
analyze:
|
|
30
|
-
name: Analyze
|
|
31
|
-
runs-on: ubuntu-latest
|
|
32
|
-
permissions:
|
|
33
|
-
actions: read
|
|
34
|
-
contents: read
|
|
35
|
-
security-events: write
|
|
36
|
-
|
|
37
|
-
strategy:
|
|
38
|
-
fail-fast: false
|
|
39
|
-
matrix:
|
|
40
|
-
language: ["javascript"]
|
|
41
|
-
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
|
42
|
-
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
|
43
|
-
|
|
44
|
-
steps:
|
|
45
|
-
- name: Checkout repository
|
|
46
|
-
uses: actions/checkout@v3
|
|
47
|
-
|
|
48
|
-
# Initializes the CodeQL tools for scanning.
|
|
49
|
-
- name: Initialize CodeQL
|
|
50
|
-
uses: github/codeql-action/init@v2
|
|
51
|
-
with:
|
|
52
|
-
languages: ${{ matrix.language }}
|
|
53
|
-
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
54
|
-
# By default, queries listed here will override any specified in a config file.
|
|
55
|
-
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
56
|
-
|
|
57
|
-
# 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
|
|
58
|
-
# queries: security-extended,security-and-quality
|
|
59
|
-
|
|
60
|
-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
61
|
-
# If this step fails, then you should remove it and run the build manually (see below)
|
|
62
|
-
- name: Autobuild
|
|
63
|
-
uses: github/codeql-action/autobuild@v2
|
|
64
|
-
|
|
65
|
-
# âšī¸ Command-line programs to run using the OS shell.
|
|
66
|
-
# đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
67
|
-
|
|
68
|
-
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
|
69
|
-
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
|
70
|
-
|
|
71
|
-
# - run: |
|
|
72
|
-
# echo "Run, Build Application using script"
|
|
73
|
-
# ./location_of_script_within_repo/buildscript.sh
|
|
74
|
-
|
|
75
|
-
- name: Perform CodeQL Analysis
|
|
76
|
-
uses: github/codeql-action/analyze@v2
|
|
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: ["main"]
|
|
17
|
+
paths-ignore:
|
|
18
|
+
- "**.md"
|
|
19
|
+
pull_request:
|
|
20
|
+
types: [opened, reopened, synchronize, ready_for_review]
|
|
21
|
+
# The branches below must be a subset of the branches above
|
|
22
|
+
branches: ["main"]
|
|
23
|
+
paths-ignore:
|
|
24
|
+
- "**.md"
|
|
25
|
+
schedule:
|
|
26
|
+
- cron: "37 23 * * 5"
|
|
27
|
+
|
|
28
|
+
jobs:
|
|
29
|
+
analyze:
|
|
30
|
+
name: Analyze
|
|
31
|
+
runs-on: ubuntu-latest
|
|
32
|
+
permissions:
|
|
33
|
+
actions: read
|
|
34
|
+
contents: read
|
|
35
|
+
security-events: write
|
|
36
|
+
|
|
37
|
+
strategy:
|
|
38
|
+
fail-fast: false
|
|
39
|
+
matrix:
|
|
40
|
+
language: ["javascript"]
|
|
41
|
+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
|
|
42
|
+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
|
|
43
|
+
|
|
44
|
+
steps:
|
|
45
|
+
- name: Checkout repository
|
|
46
|
+
uses: actions/checkout@v3
|
|
47
|
+
|
|
48
|
+
# Initializes the CodeQL tools for scanning.
|
|
49
|
+
- name: Initialize CodeQL
|
|
50
|
+
uses: github/codeql-action/init@v2
|
|
51
|
+
with:
|
|
52
|
+
languages: ${{ matrix.language }}
|
|
53
|
+
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
54
|
+
# By default, queries listed here will override any specified in a config file.
|
|
55
|
+
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
56
|
+
|
|
57
|
+
# 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
|
|
58
|
+
# queries: security-extended,security-and-quality
|
|
59
|
+
|
|
60
|
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
61
|
+
# If this step fails, then you should remove it and run the build manually (see below)
|
|
62
|
+
- name: Autobuild
|
|
63
|
+
uses: github/codeql-action/autobuild@v2
|
|
64
|
+
|
|
65
|
+
# âšī¸ Command-line programs to run using the OS shell.
|
|
66
|
+
# đ See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
|
|
67
|
+
|
|
68
|
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
|
|
69
|
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
|
|
70
|
+
|
|
71
|
+
# - run: |
|
|
72
|
+
# echo "Run, Build Application using script"
|
|
73
|
+
# ./location_of_script_within_repo/buildscript.sh
|
|
74
|
+
|
|
75
|
+
- name: Perform CodeQL Analysis
|
|
76
|
+
uses: github/codeql-action/analyze@v2
|