From d5e4cf2e4cbca15bf4ed10e456b71393b4299e70 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 14 May 2026 12:56:21 +0000 Subject: [PATCH] agentplane: publish 0.6.0 --- README.md | 8 ++++---- action.yml | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 4367868..aaa4965 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.4.4 +- uses: basilisk-labs/setup-agentplane@v0.6.0 with: - version: 0.4.4 + version: 0.6.0 ``` This composite action installs AgentPlane from the official Bun single-file executable archives and validates each archive checksum before adding `agentplane` to PATH. @@ -25,9 +25,9 @@ This composite action installs AgentPlane from the official Bun single-file exec ```yaml steps: - - uses: basilisk-labs/setup-agentplane@v0.4.4 + - uses: basilisk-labs/setup-agentplane@v0.6.0 with: - version: 0.4.4 + version: 0.6.0 ``` ## Smoke check diff --git a/action.yml b/action.yml index 1586d4c..553c851 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.4. + description: AgentPlane version to install. Use a plain semver value such as 0.6.0. required: false - default: "0.4.4" + default: "0.6.0" 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.4/agentplane-bun-v0.4.4-darwin-arm64.tar.gz" - asset_sha256="7bb81d0b66b7f59a62ecbb5e83fa67f6f8344ac65b9f39447d76c2448c0b44cf" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.0/agentplane-bun-v0.6.0-darwin-arm64.tar.gz" + asset_sha256="0a06d645931f3841b9cc26d17b2c2350d999fdb6c165260b934690629cea1910" ;; macOS-X64) - 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" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.0/agentplane-bun-v0.6.0-darwin-x64.tar.gz" + asset_sha256="6de3df3f55ecedc10844772d23e978823897bb4bc9a7bdfc96544586e41cec44" ;; Linux-ARM64) - 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" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.0/agentplane-bun-v0.6.0-linux-arm64.tar.gz" + asset_sha256="a7d3873769101a3d988d7840a7b87d6ead79dadf7618e190e05260bfa800f780" ;; Linux-X64) - 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" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.0/agentplane-bun-v0.6.0-linux-x64.tar.gz" + asset_sha256="280fbca86a4d03c2dfdaaf86985f5331e6f4af39103846f162394b02831bd195" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.4.4/agentplane-bun-v0.4.4-win32-x64.zip" - asset_sha256="8942f314d98176a6ccafa2e724e6af9affab7a6ce836570cb32d65574570d746" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.0/agentplane-bun-v0.6.0-win32-x64.zip" + asset_sha256="b19ff6d45a3a12013b0d5ac6f5c27d60df19394ab2fb3a6523a5c12b832cbaa2" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2