-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73d0341
commit 097ab87
Showing
13 changed files
with
776 additions
and
840 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ version: 2.1 | |
parameters: | ||
node-version: | ||
type: string | ||
default: "16.13.2" | ||
default: "18.13.0" | ||
orbs: | ||
node: circleci/[email protected] | ||
slack: circleci/[email protected] | ||
|
@@ -72,23 +72,23 @@ commands: | |
jobs: | ||
test: | ||
docker: | ||
- image: circleci/node:16-stretch | ||
- image: cimg/node:18.13.0 | ||
steps: | ||
- checkout | ||
- node/install: | ||
node-version: << pipeline.parameters.node-version >> | ||
- run: | ||
name: Audit Dependencies | ||
command: npm audit --production --audit-level=high | ||
- node/install-packages: | ||
cache-path: ./node_modules | ||
override-ci-command: npm install | ||
- run: | ||
name: Audit Dependencies | ||
command: npm run audit | ||
- run: | ||
name: Running Mocha Tests | ||
command: npm test | ||
build: | ||
docker: | ||
- image: circleci/node:16-stretch | ||
- image: cimg/node:18.13.0 | ||
user: root | ||
steps: | ||
- checkout | ||
|
@@ -118,8 +118,10 @@ workflows: | |
jobs: | ||
- build: | ||
name: "Build and publish docker image" | ||
context: | ||
- componentspusher | ||
filters: | ||
branches: | ||
ignore: /.*/ | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ELASTICIO_OBJECT_STORAGE_TOKEN=token | ||
ELASTICIO_OBJECT_STORAGE_URI=http://127.0.0.1:3002 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,3 +27,4 @@ build/Release | |
node_modules | ||
|
||
.idea | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
ignore: | ||
- vulnerability: CVE-2022-3996 | ||
package: | ||
name: libssl3 | ||
version: 3.0.7-r0 | ||
|
||
- vulnerability: CVE-2022-3996 | ||
package: | ||
name: libcrypto3 | ||
version: 3.0.7-r0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"GHSA-27h2-hvpr-p74q": { | ||
"active": true, | ||
"notes": "We don't use verify function from jsonwebtoken, so not affected" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.