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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [4.0.0](https://github.com/OctopusDeploy/install-octopus-cli-action/compare/v3.1.4...v4.0.0) (2025-12-14)


### ⚠ BREAKING CHANGES

* Update node to node 24 ([#586](https://github.com/OctopusDeploy/install-octopus-cli-action/issues/586))

### Features

* Update node to node 24 ([#586](https://github.com/OctopusDeploy/install-octopus-cli-action/issues/586)) ([e805a3e](https://github.com/OctopusDeploy/install-octopus-cli-action/commit/e805a3e7ec6af3a030bdf8744b64ff05400d7031))

## [3.1.4](https://github.com/OctopusDeploy/install-octopus-cli-action/compare/v3.1.3...v3.1.4) (2025-12-10)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To install the latest version (i.e. `*` or `latest`) of the Octopus CLI:

```yml
- name: Install Octopus CLI 🐙
uses: OctopusDeploy/install-octopus-cli-action@v3
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: '*'
```
Expand All @@ -32,7 +32,7 @@ To install a specific version of the Octopus CLI:

```yml
- name: Install Octopus CLI 🐙
uses: OctopusDeploy/install-octopus-cli-action@v3
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: 0.8.0
```
Expand All @@ -41,7 +41,7 @@ Here's an example of invoking the `account list` command after installing the Oc

```yml
- name: Install Octopus CLI 🐙
uses: OctopusDeploy/install-octopus-cli-action@v3
uses: OctopusDeploy/install-octopus-cli-action@v4
with:
version: 0.8.0
- name: list-octopusdeploy-accounts
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@
"postbuild": "ncc build out/main.js -o dist",
"test": "jest --ci --reporters=default --reporters=jest-junit --passWithNoTests"
},
"version": "3.1.4"
"version": "4.0.0"
}
Loading