-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Snyk] Fix for 1 vulnerable dependencies (#188)
* fix: init-container/.snyk & init-container/package.json to reduce vulnerabilities The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-AXIOS-174505 * apply patch when building docker image
- Loading branch information
Showing
3 changed files
with
19 additions
and
5 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
version: v1.13.3 | ||
ignore: {} | ||
# patches apply the minimum changes required to fix a vulnerability | ||
patch: | ||
SNYK-JS-AXIOS-174505: | ||
- axios: | ||
patched: '2019-05-05T23:46:51.246Z' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ | ||
"name": "init-decryptor", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "Meant to be used inside init container to read encrypted values from a given folder and decrypt to them into a json in a given folder", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "cd tests && ./run_test.sh" | ||
"test": "cd tests && ./run_test.sh", | ||
"snyk-protect": "snyk protect", | ||
"prepublish": "npm run snyk-protect" | ||
}, | ||
"author": "Soluto", | ||
"license": "MIT", | ||
"dependencies": { | ||
"axios": "^0.18.0", | ||
"commander": "^2.19.0", | ||
"node-readfiles": "^0.2.0" | ||
} | ||
"node-readfiles": "^0.2.0", | ||
"snyk": "^1.161.1" | ||
}, | ||
"snyk": true | ||
} |