From bd5393b334459e28aab9bda5e4a9d74c5dcbc74f Mon Sep 17 00:00:00 2001 From: Miguel Martinez Trivino Date: Thu, 16 Apr 2026 16:18:38 +0200 Subject: [PATCH 1/3] docs: update install commands now that EE is the default edition The install script now defaults to the enterprise edition. Update README to use --oss for OSS installation, and remove the --ee flag from all CI workflow install steps since it is no longer needed. Signed-off-by: Miguel Martinez Trivino --- .github/workflows/author_verification.yml | 2 +- .github/workflows/release.yaml | 5 ++--- .github/workflows/scm_configuration_check.yaml | 2 +- .github/workflows/secrets-scan-daily.yml | 2 +- README.md | 8 ++++---- 5 files changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/author_verification.yml b/.github/workflows/author_verification.yml index e508745de..714b2bd73 100644 --- a/.github/workflows/author_verification.yml +++ b/.github/workflows/author_verification.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Install Chainloop run: | - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s - name: Checkout repository uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1dc73ebf7..5a68ad4c8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,7 +20,7 @@ jobs: - name: Install Chainloop run: | - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s - name: Run Release Gate Attestation run: | @@ -65,8 +65,7 @@ jobs: - name: Install Chainloop run: | - # Need the ee CLI to have access to project management capabilities - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s - name: Checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 diff --git a/.github/workflows/scm_configuration_check.yaml b/.github/workflows/scm_configuration_check.yaml index 9cd4e9949..6e46d589f 100644 --- a/.github/workflows/scm_configuration_check.yaml +++ b/.github/workflows/scm_configuration_check.yaml @@ -25,7 +25,7 @@ jobs: - name: Install Chainloop run: | - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s - name: Initialize Attestation run: | diff --git a/.github/workflows/secrets-scan-daily.yml b/.github/workflows/secrets-scan-daily.yml index 60ba52b99..547033e4c 100644 --- a/.github/workflows/secrets-scan-daily.yml +++ b/.github/workflows/secrets-scan-daily.yml @@ -24,7 +24,7 @@ jobs: - name: Install Chainloop run: | - curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --ee + curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s - name: Initialize Attestation run: | diff --git a/README.md b/README.md index 76320f63b..f4f0c8fd1 100644 --- a/README.md +++ b/README.md @@ -97,25 +97,25 @@ Follow the [quickstart](https://docs.chainloop.dev/quickstart) or the [getting s To **install the latest version** for macOS, Linux or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)) just choose one of the following installation methods. ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss ``` you can retrieve a specific version with ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --version v1.7.0 +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --version v1.7.0 ``` and customize the install path (default to /usr/local/bin) ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --path /my-path +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --path /my-path ``` if [`cosign`](https://docs.sigstore.dev/cosign) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the `--force-verification` flag. ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --force-verification +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --force-verification ``` ### Deploy Chainloop (optional) From ae02934bc8fd36e3cf71395bafa37b4d71521ccc Mon Sep 17 00:00:00 2001 From: Miguel Martinez Trivino Date: Thu, 16 Apr 2026 16:20:28 +0200 Subject: [PATCH 2/3] docs: remove spurious 'now' from install commands Signed-off-by: Miguel Martinez Trivino --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4f0c8fd1..63d0bf4b5 100644 --- a/README.md +++ b/README.md @@ -97,25 +97,25 @@ Follow the [quickstart](https://docs.chainloop.dev/quickstart) or the [getting s To **install the latest version** for macOS, Linux or Windows (using [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)) just choose one of the following installation methods. ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss ``` you can retrieve a specific version with ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --version v1.7.0 +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --version v1.7.0 ``` and customize the install path (default to /usr/local/bin) ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --path /my-path +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --path /my-path ``` if [`cosign`](https://docs.sigstore.dev/cosign) is present in your system, in addition to the checksum check, a signature verification will be performed. This behavior can be enforced via the `--force-verification` flag. ```bash -curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s now -- --oss --force-verification +curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss --force-verification ``` ### Deploy Chainloop (optional) From eca687c5e97fe9250ee34ecd2e6332bd29b58346 Mon Sep 17 00:00:00 2001 From: Miguel Martinez Trivino Date: Thu, 16 Apr 2026 16:23:31 +0200 Subject: [PATCH 3/3] docs: add note about enterprise edition install Signed-off-by: Miguel Martinez Trivino --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 63d0bf4b5..5bde433d2 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,8 @@ To **install the latest version** for macOS, Linux or Windows (using [WSL](https curl -sfL https://dl.chainloop.dev/cli/install.sh | bash -s -- --oss ``` +> To install the **enterprise edition** instead, omit the `--oss` flag. + you can retrieve a specific version with ```bash