@flowfuse/driver-docker 2.26.0 → 2.26.1
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,29 @@
|
|
|
1
|
+
# Trivy Security Scanner Configuration
|
|
2
|
+
# Documentation: https://aquasecurity.github.io/trivy/latest/docs/configuration/
|
|
3
|
+
|
|
4
|
+
scan:
|
|
5
|
+
scanners:
|
|
6
|
+
- vuln
|
|
7
|
+
- secret
|
|
8
|
+
|
|
9
|
+
skip-dirs:
|
|
10
|
+
- node_modules
|
|
11
|
+
- .git
|
|
12
|
+
- coverage
|
|
13
|
+
- ci
|
|
14
|
+
|
|
15
|
+
severity:
|
|
16
|
+
- CRITICAL
|
|
17
|
+
- HIGH
|
|
18
|
+
- MEDIUM
|
|
19
|
+
- LOW
|
|
20
|
+
|
|
21
|
+
pkg:
|
|
22
|
+
types:
|
|
23
|
+
- os
|
|
24
|
+
- library
|
|
25
|
+
include-dev-deps: true
|
|
26
|
+
|
|
27
|
+
format: "sarif"
|
|
28
|
+
ignorefile: ".github/.trivyignore.yaml"
|
|
29
|
+
exit-code: 0
|
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
matrix:
|
|
14
14
|
node-version: [20]
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
17
17
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
18
|
-
uses: actions/setup-node@
|
|
18
|
+
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
|
19
19
|
with:
|
|
20
20
|
node-version: ${{ matrix.node-version }}
|
|
21
21
|
- name: Install Dependencies
|
|
@@ -8,11 +8,11 @@ jobs:
|
|
|
8
8
|
publish:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
|
-
- uses: actions/checkout@
|
|
12
|
-
- uses: actions/setup-node@
|
|
11
|
+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
12
|
+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
|
|
13
13
|
with:
|
|
14
14
|
node-version: 18
|
|
15
15
|
- run: npm ci --omit dev
|
|
16
|
-
- uses: JS-DevTools/npm-publish@
|
|
16
|
+
- uses: JS-DevTools/npm-publish@4ce4bd0f334d5316473155078da1955d42148494 # v4.1.4
|
|
17
17
|
with:
|
|
18
18
|
token: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: SAST Scan
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- main
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
|
|
12
|
+
concurrency:
|
|
13
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
14
|
+
cancel-in-progress: true
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
scan:
|
|
18
|
+
name: SAST Scan
|
|
19
|
+
uses : flowfuse/github-actions-workflows/.github/workflows/sast_scan.yaml@v0.47.0
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
#### 2.26.1: Release
|
|
2
|
+
|
|
3
|
+
- Bump JS-DevTools/npm-publish from 4.1.3 to 4.1.4 (#179)
|
|
4
|
+
- Bump flowfuse/github-actions-workflows/.github/workflows/sast_scan.yaml (#181)
|
|
5
|
+
- Bump actions/checkout from 6.0.1 to 6.0.2 (#182)
|
|
6
|
+
- Bump actions/setup-node from 6.1.0 to 6.2.0 (#180)
|
|
7
|
+
- ci: Enable SAST (#177) @ppawlowski
|
|
8
|
+
|
|
1
9
|
#### 2.26.0: Release
|
|
2
10
|
|
|
3
11
|
- Bump JS-DevTools/npm-publish from 4.1.2 to 4.1.3 (#176)
|