-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: support --failOn options for snyk-delta & CLI
* fix: package.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NCONF-2395478 * fix: package.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-ASYNC-2441827 * feat: update snyk delta and relevant tests * chore: drop snyk org + mark not maintained * fix: upgrade axios from 0.26.1 to 0.27.2 Snyk has created this PR to upgrade axios from 0.26.1 to 0.27.2. See this package in npm: https://www.npmjs.com/package/axios See this project in Snyk: https://app.snyk.io/org/appsec-playground/project/118ea22d-619e-4f08-ad5f-29e006593678?utm_source=github&utm_medium=referral&page=upgrade-pr * feat: add failon flags following failon support in snyk-delta (#68) * feat: add failon flags following failon support in snyk-delta * fix: require failon compatible snyk-delta version Co-authored-by: snyk-bot <[email protected]> Co-authored-by: Ilan Torbaty <[email protected]> Co-authored-by: IlanTSnyk <[email protected]> Co-authored-by: ghe <[email protected]> Co-authored-by: Lili Kastilio <[email protected]>
- Loading branch information
1 parent
fcb7507
commit fa121c3
Showing
6 changed files
with
318 additions
and
50 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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
version: 2.1 | ||
orbs: | ||
snyk: snyk/[email protected] | ||
jobs: | ||
build-test-monitor: | ||
docker: | ||
|
@@ -10,10 +8,6 @@ jobs: | |
- run: npm install semantic-release @semantic-release/exec pkg --save-dev --legacy-peer-deps | ||
- run: npm install | ||
- run: npm test | ||
- snyk/scan: | ||
fail-on-issues: true | ||
monitor-on-build: true | ||
token-variable: SNYK_TOKEN | ||
- run: npx semantic-release | ||
build-test: | ||
docker: | ||
|
@@ -22,10 +16,6 @@ jobs: | |
- checkout | ||
- run: npm install | ||
- run: npm test | ||
- snyk/scan: | ||
fail-on-issues: true | ||
monitor-on-build: false | ||
token-variable: SNYK_TOKEN | ||
- run: npx tsc | ||
build-test-from-fork: | ||
docker: | ||
|
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ dist | |
*.log | ||
.eslintcache | ||
snyk-prevent-gh-commit-status-* | ||
.dccache |
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.