diff --git a/README.md b/README.md index 438595a..dd586e5 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.6.1 +- uses: basilisk-labs/setup-agentplane@v0.6.2 with: - version: 0.6.1 + version: 0.6.2 ``` 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.1 + - uses: basilisk-labs/setup-agentplane@v0.6.2 with: - version: 0.6.1 + version: 0.6.2 ``` ## Smoke check diff --git a/action.yml b/action.yml index 4f3634e..202c479 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.1. + description: AgentPlane version to install. Use a plain semver value such as 0.6.2. required: false - default: "0.6.1" + default: "0.6.2" 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.1/agentplane-bun-v0.6.1-darwin-arm64.tar.gz" - asset_sha256="d213347a44a040550887373fb231d5dbc768dc19d0ada60870835f79829b3109" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.2/agentplane-bun-v0.6.2-darwin-arm64.tar.gz" + asset_sha256="ec91cd481922aa85ea20830325ff38fa0485e53db882a88776c451c701f6877a" ;; macOS-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.1/agentplane-bun-v0.6.1-darwin-x64.tar.gz" - asset_sha256="7988b7c1a7940fc4708c48c218a41f6d8f63c3d0ac79a14cf5ecfc9167d16524" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.2/agentplane-bun-v0.6.2-darwin-x64.tar.gz" + asset_sha256="9241097e881ce7b0da43b1f3fbc48beedb3bf1ba25cb3d4eb0b2891a18c650cf" ;; Linux-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.1/agentplane-bun-v0.6.1-linux-arm64.tar.gz" - asset_sha256="f55745a9087432d8d2f2e0356aaa836c951b735b62a6254ebfa9f7f87cd24070" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.2/agentplane-bun-v0.6.2-linux-arm64.tar.gz" + asset_sha256="f335836d3ed85a317fb132fa7e69e10d0feaa269edef678c9982cfdf0f0b7d4d" ;; Linux-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.1/agentplane-bun-v0.6.1-linux-x64.tar.gz" - asset_sha256="132f30e4362f98e0bd7f04fa0a8b5ecf882ed029156d3c37691358f67588c1cd" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.2/agentplane-bun-v0.6.2-linux-x64.tar.gz" + asset_sha256="b7640861ca1e380e63be99e4e6d0e8d5d8ce938bef751b76d8df4066550b78b1" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.1/agentplane-bun-v0.6.1-win32-x64.zip" - asset_sha256="b7767bf8eb4205591ff837950514f2ed6844468880eada6989f1e606acf2aae4" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.2/agentplane-bun-v0.6.2-win32-x64.zip" + asset_sha256="e591a4f94cad3c99aaa41eb7b443df77014d3bb70886440850c19ac3cc99dc1f" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2