@flowfuse/driver-docker 2.26.0 → 2.26.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.
@@ -0,0 +1,2 @@
1
+ # Trivy ignore file
2
+ # Add patterns to ignore specific vulnerabilities
@@ -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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
16
+ - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17
17
  - name: Use Node.js ${{ matrix.node-version }}
18
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
12
- - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
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@d2fef917d9aa6e1f0ee5eac28ed023eb4921ce51 # v4.1.3
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,14 @@
1
+ #### 2.26.2: Release
2
+
3
+
4
+ #### 2.26.1: Release
5
+
6
+ - Bump JS-DevTools/npm-publish from 4.1.3 to 4.1.4 (#179)
7
+ - Bump flowfuse/github-actions-workflows/.github/workflows/sast_scan.yaml (#181)
8
+ - Bump actions/checkout from 6.0.1 to 6.0.2 (#182)
9
+ - Bump actions/setup-node from 6.1.0 to 6.2.0 (#180)
10
+ - ci: Enable SAST (#177) @ppawlowski
11
+
1
12
  #### 2.26.0: Release
2
13
 
3
14
  - Bump JS-DevTools/npm-publish from 4.1.2 to 4.1.3 (#176)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-docker",
3
- "version": "2.26.0",
3
+ "version": "2.26.2",
4
4
  "description": "Docker driver for FlowFuse",
5
5
  "main": "docker.js",
6
6
  "scripts": {