From 70fe5d1f55028c35c304b1547d9ff42c4d75bbfd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 5 May 2026 00:27:51 +0000 Subject: [PATCH] agentplane: publish 0.4.4 --- README.md | 10 +++++----- action.yml | 24 ++++++++++++------------ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 17cf81a..4367868 100644 --- a/README.md +++ b/README.md @@ -7,12 +7,12 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.4.3 +- uses: basilisk-labs/setup-agentplane@v0.4.4 with: - version: 0.4.3 + version: 0.4.4 ``` -This composite action installs AgentPlane from the official standalone archives and validates each standalone bundled-runtime archive checksum before adding `agentplane` to PATH. +This composite action installs AgentPlane from the official Bun single-file executable archives and validates each archive checksum before adding `agentplane` to PATH. ## Capabilities @@ -25,9 +25,9 @@ This composite action installs AgentPlane from the official standalone archives ```yaml steps: - - uses: basilisk-labs/setup-agentplane@v0.4.3 + - uses: basilisk-labs/setup-agentplane@v0.4.4 with: - version: 0.4.3 + version: 0.4.4 ``` ## Smoke check diff --git a/action.yml b/action.yml index 87efb49..1586d4c 100644 --- a/action.yml +++ b/action.yml @@ -2,9 +2,9 @@ name: setup-agentplane description: Install the AgentPlane CLI in GitHub Actions. inputs: version: - description: AgentPlane version to install. Use a plain semver value such as 0.4.3. + description: AgentPlane version to install. Use a plain semver value such as 0.4.4. required: false - default: "0.4.3" + default: "0.4.4" verify: description: Run an agentplane --version smoke check after installation. required: false @@ -22,24 +22,24 @@ runs: trap 'rm -rf "$tmp_dir"' EXIT INT TERM case "${RUNNER_OS}-${RUNNER_ARCH}" in macOS-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-darwin-arm64.tar.gz" - asset_sha256="fa0ee43b3a74e2d6be6d0dc21f1bf41c263ffcbedb4ee8b857a8722004ee059d" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-darwin-arm64.tar.gz" + asset_sha256="7bb81d0b66b7f59a62ecbb5e83fa67f6f8344ac65b9f39447d76c2448c0b44cf" ;; macOS-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-darwin-x64.tar.gz" - asset_sha256="af56277e4c81193f4dcf31c4a4a0321151b8fe0f3820ddeea2c46bca856c1d1d" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-darwin-x64.tar.gz" + asset_sha256="379438dbd3c3afab6d476211f0a956e9d4682269e398c7557cd46ca62f16bb93" ;; Linux-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-linux-arm64.tar.gz" - asset_sha256="7ee1f3dca9e5e7898535ccca9824d322d50b8527c668dd73ef7986b21b915aef" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-linux-arm64.tar.gz" + asset_sha256="4eb8eaaa4a47e2d64d24e0c3a872387830de0c8b88c4ebbef5ba343e4432565e" ;; Linux-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-linux-x64.tar.gz" - asset_sha256="de5589390d92f5d2ef09874fb44b5c4d3f4c812f80ecdb9fb599bd9e96f5f87a" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-linux-x64.tar.gz" + asset_sha256="02bd9968525c0097b99ad42f806082a57ed6d4d393143f7dab2267ad1f9fc0eb" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.3/agentplane-v0.4.3-win32-x64.zip" - asset_sha256="c4c037fa107debfe3f6ac55ab9486b5a3f88c92879518f3df37410878ec327c4" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-win32-x64.zip" + asset_sha256="8942f314d98176a6ccafa2e724e6af9affab7a6ce836570cb32d65574570d746" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2