Skip to content

Commit

Permalink
rename orb
Browse files Browse the repository at this point in the history
  • Loading branch information
mikomraz committed Jul 10, 2019
1 parent 66b6a50 commit e8baf74
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Expand Up @@ -13,15 +13,15 @@ workflows:

- orb-tools/publish:
orb-path: packed/orb.yml
orb-ref: "snyk/snyk-scan@dev:${CIRCLE_BRANCH}"
orb-ref: "snyk/snyk@dev:${CIRCLE_BRANCH}"
publish-token-variable: "$CIRCLECI_API_TOKEN"
attach-workspace: true
checkout: false
requires: [orb-tools/pack]

- orb-tools/increment:
orb-path: packed/orb.yml
orb-ref: "snyk/snyk-scan"
orb-ref: "snyk/snyk"
segment: "patch"
publish-token-variable: "$CIRCLECI_API_TOKEN"
attach-workspace: true
Expand Down
4 changes: 2 additions & 2 deletions src/examples/snyk-docker-scan.yml
Expand Up @@ -4,7 +4,7 @@ usage:
version: 2.1

orbs:
snyk-scan: mikomraz/snyk-scan@dev:master
snyk: snyk/snyk@x.y.z

jobs:
build:
Expand All @@ -18,7 +18,7 @@ usage:
- run:
name: Build Docker image
command: docker build -t $IMAGE_NAME:latest .
- snyk-scan/scan:
- snyk/scan:
dockerImageName: $IMAGE_NAME:latest
targetFile: "Dockerfile"
severity: high
Expand Down
4 changes: 2 additions & 2 deletions src/examples/snyk-scan-within-job.yml
Expand Up @@ -4,7 +4,7 @@ usage:
version: 2.1

orbs:
snyk-scan: mikomraz/snyk-scan@dev:master
snyk: snyk/snyk@x.y.z

jobs:
build:
Expand All @@ -14,7 +14,7 @@ usage:
- checkout
- run:
command: npm install -q
- snyk-scan/scan:
- snyk/scan:
severity: high
failOnIssues: true
monitorOnBuild: true
Expand Down

0 comments on commit e8baf74

Please sign in to comment.