From 45f5ac65880b1647a2fd34a7f7005d0a97f859fd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 3 Jun 2026 20:45:21 +0000 Subject: [PATCH] agentplane: publish 0.6.15 --- README.md | 8 ++++---- action.yml | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 64cd9cf..d69d729 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.6.14 +- uses: basilisk-labs/setup-agentplane@v0.6.15 with: - version: 0.6.14 + version: 0.6.15 ``` 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.14 + - uses: basilisk-labs/setup-agentplane@v0.6.15 with: - version: 0.6.14 + version: 0.6.15 ``` ## Smoke check diff --git a/action.yml b/action.yml index 0fbe8e6..4829fa2 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.14. + description: AgentPlane version to install. Use a plain semver value such as 0.6.15. required: false - default: "0.6.14" + default: "0.6.15" 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.14/agentplane-bun-v0.6.14-darwin-arm64.tar.gz" - asset_sha256="59d34799a43626caf345727b8a5f2bfd5b14b7db6e20f6fafcf34519d0f1582b" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.15/agentplane-bun-v0.6.15-darwin-arm64.tar.gz" + asset_sha256="f744a992d549bfb763dfbe5abd618593f962a47fb21e5f51a1083db474fa48d3" ;; macOS-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.14/agentplane-bun-v0.6.14-darwin-x64.tar.gz" - asset_sha256="6ac0bca8f0d08f19e9f193cb14560dc26e326df3abd01b014928e1cd0d8a461d" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.15/agentplane-bun-v0.6.15-darwin-x64.tar.gz" + asset_sha256="6fedd8c7456a08072904ab887fa97af59a9be35a27a4f4906e36e623addbc33e" ;; Linux-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.14/agentplane-bun-v0.6.14-linux-arm64.tar.gz" - asset_sha256="e4bdfe6a5660b7ac186e778760ae2d5064cad93ae2b1c8bf769e44b44286c31c" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.15/agentplane-bun-v0.6.15-linux-arm64.tar.gz" + asset_sha256="7bd36cdef955683bf8f9662ee39d796e386cc23a28739c3c07d5c09715fe4782" ;; Linux-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.14/agentplane-bun-v0.6.14-linux-x64.tar.gz" - asset_sha256="634a994627a48e528747b656fb3983a056fbe89865009818a8e9930394391fa8" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.15/agentplane-bun-v0.6.15-linux-x64.tar.gz" + asset_sha256="ccf3c96e412a017b594c41df8261cd23b7a79680d7c4e1bf51e09f6986cf7f97" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.14/agentplane-bun-v0.6.14-win32-x64.zip" - asset_sha256="08837e37bd0ef3b38dde12a7c8d1903cd63afa82951e062ed13cfc786c13a06b" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.15/agentplane-bun-v0.6.15-win32-x64.zip" + asset_sha256="3cf09b0da51bf9baa99570663490ff315aac43959e0986ec1b27e87dbe02f8c6" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2