Skip to content

Commit b6582a4

Browse files
agentplane: publish 0.4.3
1 parent d48d3b1 commit b6582a4

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
Install AgentPlane in GitHub Actions.
88

99
```yaml
10-
- uses: basilisk-labs/setup-agentplane@v0.4.2
10+
- uses: basilisk-labs/setup-agentplane@v0.4.3
1111
with:
12-
version: 0.4.2
12+
version: 0.4.3
1313
```
1414
1515
This composite action installs AgentPlane from the official standalone archives and validates each standalone bundled-runtime archive checksum before adding `agentplane` to PATH.
@@ -25,9 +25,9 @@ This composite action installs AgentPlane from the official standalone archives
2525

2626
```yaml
2727
steps:
28-
- uses: basilisk-labs/setup-agentplane@v0.4.2
28+
- uses: basilisk-labs/setup-agentplane@v0.4.3
2929
with:
30-
version: 0.4.2
30+
version: 0.4.3
3131
```
3232

3333
## Smoke check

action.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: setup-agentplane
22
description: Install the AgentPlane CLI in GitHub Actions.
33
inputs:
44
version:
5-
description: AgentPlane version to install. Use a plain semver value such as 0.4.2.
5+
description: AgentPlane version to install. Use a plain semver value such as 0.4.3.
66
required: false
7-
default: "0.4.2"
7+
default: "0.4.3"
88
verify:
99
description: Run an agentplane --version smoke check after installation.
1010
required: false
@@ -22,24 +22,24 @@ runs:
2222
trap 'rm -rf "$tmp_dir"' EXIT INT TERM
2323
case "${RUNNER_OS}-${RUNNER_ARCH}" in
2424
macOS-ARM64)
25-
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.2/agentplane-v0.4.2-darwin-arm64.tar.gz"
26-
asset_sha256="7c7ba2f08ddd1a660fc3c39de3bd76285df67f53bd04ed3477f3a90a5df09af8"
25+
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-darwin-arm64.tar.gz"
26+
asset_sha256="fa0ee43b3a74e2d6be6d0dc21f1bf41c263ffcbedb4ee8b857a8722004ee059d"
2727
;;
2828
macOS-X64)
29-
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.2/agentplane-v0.4.2-darwin-x64.tar.gz"
30-
asset_sha256="49372fff89c536e16529be32689278e4f63238763b691ef1a8c168c66fe19bcb"
29+
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-darwin-x64.tar.gz"
30+
asset_sha256="af56277e4c81193f4dcf31c4a4a0321151b8fe0f3820ddeea2c46bca856c1d1d"
3131
;;
3232
Linux-ARM64)
33-
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.2/agentplane-v0.4.2-linux-arm64.tar.gz"
34-
asset_sha256="3a3727afd12a88836be3a3bd4164446af1b7f5c301dae4a5744a016fcc2c6ec8"
33+
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-linux-arm64.tar.gz"
34+
asset_sha256="7ee1f3dca9e5e7898535ccca9824d322d50b8527c668dd73ef7986b21b915aef"
3535
;;
3636
Linux-X64)
37-
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.2/agentplane-v0.4.2-linux-x64.tar.gz"
38-
asset_sha256="80374f4529da46b530834dcc8203f7f5ce360d88a65eb7f9b8e2079f9427d971"
37+
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-linux-x64.tar.gz"
38+
asset_sha256="de5589390d92f5d2ef09874fb44b5c4d3f4c812f80ecdb9fb599bd9e96f5f87a"
3939
;;
4040
Windows-X64)
41-
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.2/agentplane-v0.4.2-win32-x64.zip"
42-
asset_sha256="35916139a8fc0bba0f0a1fdf12ef5a0af5cb390201ede81a1a3f182c85ab6969"
41+
asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-win32-x64.zip"
42+
asset_sha256="c4c037fa107debfe3f6ac55ab9486b5a3f88c92879518f3df37410878ec327c4"
4343
;;
4444
*)
4545
echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2

0 commit comments

Comments
 (0)