From 1ea3147726d0b5391a10f2716c076c7497e6b00d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 23 May 2026 07:47:08 +0000 Subject: [PATCH] agentplane: publish 0.6.7 --- README.md | 8 ++++---- action.yml | 24 ++++++++++++------------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 5769793..a5d7e05 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Install AgentPlane in GitHub Actions. ```yaml -- uses: basilisk-labs/setup-agentplane@v0.6.6 +- uses: basilisk-labs/setup-agentplane@v0.6.7 with: - version: 0.6.6 + version: 0.6.7 ``` 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.6 + - uses: basilisk-labs/setup-agentplane@v0.6.7 with: - version: 0.6.6 + version: 0.6.7 ``` ## Smoke check diff --git a/action.yml b/action.yml index 272c1f2..0579895 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.6. + description: AgentPlane version to install. Use a plain semver value such as 0.6.7. required: false - default: "0.6.6" + default: "0.6.7" 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.6/agentplane-bun-v0.6.6-darwin-arm64.tar.gz" - asset_sha256="03748653924e28fa7034c24dc89e1ace23dd00a525ba9856b46fd4c1cb370c8a" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.7/agentplane-bun-v0.6.7-darwin-arm64.tar.gz" + asset_sha256="9c8fd5d0a0a45c927d608a59a3251ff7e82a8458a61243a45d809772bd72a839" ;; macOS-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.6/agentplane-bun-v0.6.6-darwin-x64.tar.gz" - asset_sha256="e19a1af0951e7f1e0009797d384166abe620e7379f25327119f1c64f785b1466" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.7/agentplane-bun-v0.6.7-darwin-x64.tar.gz" + asset_sha256="d9fadcbf5038b1822512d1af7340dba9a9527b060525fd6c458793bc253836ed" ;; Linux-ARM64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.6/agentplane-bun-v0.6.6-linux-arm64.tar.gz" - asset_sha256="707f41f3192b2c3a8c09d8d70d0322ada066605522d3a9e71ecdb1502346801a" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.7/agentplane-bun-v0.6.7-linux-arm64.tar.gz" + asset_sha256="1b6a9923020d779e8e3012bd13996a45d9152d6401150dc5e038e22a74ed2abc" ;; Linux-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.6/agentplane-bun-v0.6.6-linux-x64.tar.gz" - asset_sha256="3b292583830d94af44d8bd548ae733dbce4fdff86c0926ca208a68f3e7438e17" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.7/agentplane-bun-v0.6.7-linux-x64.tar.gz" + asset_sha256="b89346402f9833ea01b8386a546357c7e473ddb45be06ff27830a36405d4b7c0" ;; Windows-X64) - asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.6/agentplane-bun-v0.6.6-win32-x64.zip" - asset_sha256="9ce51dbe4d66f5703e8a6d74640f3c34431d765ec4ceb95354c1dcb526ad5040" + asset_url="https://github.com/basilisk-labs/agentplane/releases/download/v0.6.7/agentplane-bun-v0.6.7-win32-x64.zip" + asset_sha256="77f70f1436d7883e148a067734646475388fccb3a1c9c8c2b3784f418d38b93b" ;; *) echo "Unsupported runner: ${RUNNER_OS}-${RUNNER_ARCH}" >&2