Skip to content

Commit 5cbaabc

Browse files
committed
Make latest the default cli version
1 parent 7fb27ce commit 5cbaabc

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ steps:
5151
| `version` | No | | Release version identifier (alias: `release_version`) |
5252
| `stage` | No | | Deployment stage such as `staging` or `production` (required for `update`) |
5353
| `include_paths` | No | | Filter commits by file paths (comma-separated globs for monorepos) |
54-
| `cli_version` | No | `v0.4.0` | Linear Release CLI version tag to install |
54+
| `cli_version` | No | `latest` | Linear Release CLI version tag to install |
5555

56-
`cli_version` can be set to `latest` to always download the newest CLI release. This is opt-in and may include breaking changes.
56+
`cli_version` defaults to `latest`, so the action automatically uses the newest CLI release. For reproducible builds, pin an exact tag (for example, `v0.5.0`). If stability is more important than automatic updates, prefer a pinned version.
5757

5858
## Outputs
5959

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ inputs:
3030
description: Filter commits by file paths using comma-separated globs (e.g., "apps/web/**,packages/**"). Useful for monorepos.
3131
required: false
3232
cli_version:
33-
description: Linear Release CLI version tag to install (e.g., "v0.4.0").
33+
description: Linear Release CLI version to install (e.g., "v0.5.0" or "latest").
3434
required: false
35-
default: v0.4.0
35+
default: latest
3636

3737
outputs:
3838
release-id:

0 commit comments

Comments
 (0)