diff --git a/README.md b/README.md index 69f1039..924fbb3 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.6.11 +- uses: basilisk-labs/setup-agentplane@v0.6.12 with: - version: 0.6.11 + version: 0.6.12 ``` 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.6.11 + - uses: basilisk-labs/setup-agentplane@v0.6.12 with: - version: 0.6.11 + version: 0.6.12 ``` ## Smoke check diff --git a/action.yml b/action.yml index 0f16bfd..9246416 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.6.11. + description: AgentPlane version to install. Use a plain semver value such as 0.6.12. required: false - default: "0.6.11" + default: "0.6.12" 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.6.11/agentplane-bun-v0.6.11-darwin-arm64.tar.gz" - asset_sha256="56deef89d331e842c99c92f60a1c4e4c8cb274c6e724787beb4395678abae6fa" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.12/agentplane-bun-v0.6.12-darwin-arm64.tar.gz" + asset_sha256="e13d497bf8dcc6e7ef3b6322660657b5eaea783fba12a33560ff8094a848053e" ;; macOS-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.11/agentplane-bun-v0.6.11-darwin-x64.tar.gz" - asset_sha256="70b4884a7c188a67930f9e61002fe09c2745ccaea3243aca1edb5e7af55eda19" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.12/agentplane-bun-v0.6.12-darwin-x64.tar.gz" + asset_sha256="de21c3ba302ad5f8bc75eea9309af9f4ff2166848fdcf6fa0e8f20bcf6721761" ;; Linux-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.11/agentplane-bun-v0.6.11-linux-arm64.tar.gz" - asset_sha256="92864fa44eefa6dc6ca2a04c4926d2eeaf82b30f2b6f1b65e7a3931df333404a" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.12/agentplane-bun-v0.6.12-linux-arm64.tar.gz" + asset_sha256="8f46d248e3239d1a5c831b0d64e8927b623e03def06b1adee7cb00010f6e627a" ;; Linux-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.11/agentplane-bun-v0.6.11-linux-x64.tar.gz" - asset_sha256="2106501245ffb3bad76729de94f268866a80ea45aa44c9b64402f284255e6b55" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.12/agentplane-bun-v0.6.12-linux-x64.tar.gz" + asset_sha256="9cad0759026b2d147e84f62cb9107758842063458a2fa0397757938b2bcc8f72" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.11/agentplane-bun-v0.6.11-win32-x64.zip" - asset_sha256="f0838d3b3311850fc1a1bf1aa89587f9b91cb15db8fba4468fb392edf0d0eaaf" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.12/agentplane-bun-v0.6.12-win32-x64.zip" + asset_sha256="74d6aef0ce01c862591fad4cf6793030b54695e12993086602637aec32c8034a" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2