Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/main/install.s
To install a specific version, you can replace `main` with a specific release tag:

```bash
curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/v0.277.0/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/v0.278.0/install.sh | sh
```

## GitHub Actions
Expand All @@ -43,7 +43,7 @@ To always use the latest version of the Databricks CLI, use the action from the
In case you need to use a specific version of the Databricks CLI, use the action from a release tag:

```yml
- uses: databricks/setup-cli@v0.277.0
- uses: databricks/setup-cli@v0.278.0
```

Replace the tag with the version you want to use.
Expand All @@ -53,7 +53,7 @@ Alternatively, you can specify the version as a parameter to the action:
```yml
- uses: databricks/setup-cli@main
with:
version: 0.277.0
version: 0.278.0
```

## Preview notice
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.277.0
0.278.0
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Note: we cannot assume we're running bash and use the set -euo pipefail approach.
set -e

VERSION="0.277.0"
VERSION="0.278.0"
FILE="databricks_cli_$VERSION"

# Include operating system in file name.
Expand Down