Skip to content

Commit c4a35f3

Browse files
committed
Recommend v2 releases in all examples and templates
1 parent a58502c commit c4a35f3

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

README.FoD.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ If you are interested in the readme for Debricked standalone, it can be found [h
2929
<a href="https://opensource.org/licenses/MIT">
3030
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" />
3131
</a>
32-
<a href="https://github.com/debricked/cli/releases/tag/release-v1">
32+
<a href="https://github.com/debricked/cli/releases/tag/release-v2">
3333
<img src="https://img.shields.io/github/v/release/debricked/cli" />
3434
</a>
3535
<a href="https://twitter.com/debrickedab">
@@ -44,24 +44,24 @@ If you are interested in the readme for Debricked standalone, it can be found [h
4444
</p>
4545

4646
## Installation
47-
Check out the [releases](https://github.com/debricked/cli/releases/tag/release-v1) page. Choose the asset that is applicable for your system.
47+
Check out the [releases](https://github.com/debricked/cli/releases/tag/release-v2) page. Choose the asset that is applicable for your system.
4848
Below follow some common ways to install the CLI.
4949
### Linux
5050
```sh
51-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
51+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
5252
```
5353
```sh
5454
./debricked
5555
```
5656
### Mac
5757
```sh
58-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_macOS_arm64.tar.gz | tar -xz debricked
58+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_macOS_arm64.tar.gz | tar -xz debricked
5959
```
6060
```sh
6161
./debricked
6262
```
6363
### Windows
64-
1. [Download zip](https://github.com/debricked/cli/releases/download/release-v1/cli_windows_x86_64.tar.gz)
64+
1. [Download zip](https://github.com/debricked/cli/releases/download/release-v2/cli_windows_x86_64.tar.gz)
6565
2. Unpack zip
6666
```sh
6767
.\debricked

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project via the command prompt.
2525
<a href="https://opensource.org/licenses/MIT">
2626
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" />
2727
</a>
28-
<a href="https://github.com/debricked/cli/releases/tag/release-v1">
28+
<a href="https://github.com/debricked/cli/releases/tag/release-v2">
2929
<img src="https://img.shields.io/github/v/release/debricked/cli" />
3030
</a>
3131
<a href="https://twitter.com/debrickedab">
@@ -40,24 +40,24 @@ project via the command prompt.
4040
</p>
4141

4242
## Installation
43-
Check out the [releases](https://github.com/debricked/cli/releases/tag/release-v1) page. Choose the asset that is applicable for your system.
43+
Check out the [releases](https://github.com/debricked/cli/releases/tag/release-v2) page. Choose the asset that is applicable for your system.
4444
Below follow some common ways to install the CLI.
4545
### Linux
4646
```sh
47-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
47+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
4848
```
4949
```sh
5050
./debricked
5151
```
5252
### Mac
5353
```sh
54-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_macOS_arm64.tar.gz | tar -xz debricked
54+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_macOS_arm64.tar.gz | tar -xz debricked
5555
```
5656
```sh
5757
./debricked
5858
```
5959
### Windows
60-
1. [Download zip](https://github.com/debricked/cli/releases/download/release-v1/cli_windows_x86_64.tar.gz)
60+
1. [Download zip](https://github.com/debricked/cli/releases/download/release-v2/cli_windows_x86_64.tar.gz)
6161
2. Unpack zip
6262
```sh
6363
.\debricked

examples/templates/Azure/azure-pipelines-private-maven-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
inputs:
1010
artifactsFeeds: <your-private-repository-id>
1111
- script: |
12-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
12+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
1313
./debricked scan
1414
displayName: Debricked scan
1515
env:

examples/templates/Azure/azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# artifactsFeeds: <your-private-repository-id>
1111
# Uncomment the above lines if you need to authenticate private maven registries
1212
- script: |
13-
curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
13+
curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
1414
./debricked scan
1515
displayName: Debricked scan
1616
env:

examples/templates/Bitbucket/bitbucket-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ definitions:
99
- step:
1010
name: "Debricked Scan"
1111
script:
12-
- curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
12+
- curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
1313
- ./debricked scan
1414
services:
1515
- docker
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
steps:
22
- label: ":shield: Debricked"
33
command:
4-
- curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
4+
- curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
55
- ./debricked scan

examples/templates/CircleCI/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
- image: cimg/base:current
77
steps:
88
- checkout
9-
- run: curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
9+
- run: curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
1010
- run: ./debricked scan
1111

1212
workflows:

examples/templates/GitLab/gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ stages:
33
debricked:
44
stage: scan
55
script:
6-
- curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
6+
- curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
77
- ./debricked scan

examples/templates/Jenkins/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pipeline {
99
stage('Debricked Scan') {
1010
steps {
1111
script {
12-
sh 'curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked'
12+
sh 'curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked'
1313
sh './debricked scan'
1414
}
1515
}

examples/templates/Travis/travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
branch: "*"
66
env:
77
- DEBRICKED_TOKEN=${DEBRICKED_TOKEN}
8-
before_install: curl -L https://github.com/debricked/cli/releases/download/release-v1/cli_linux_x86_64.tar.gz | tar -xz debricked
8+
before_install: curl -L https://github.com/debricked/cli/releases/download/release-v2/cli_linux_x86_64.tar.gz | tar -xz debricked
99
before_cache:
1010
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
1111
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/

0 commit comments

Comments
 (0)