Skip to content

Commit 5e0652f

Browse files
fix: bump ClawHub publish CLI pin (#98233)
1 parent 786abe7 commit 5e0652f

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/plugin-clawhub-new.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ env:
3434
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
3535
NODE_VERSION: "24.15.0"
3636
CLAWHUB_REGISTRY: "https://clawhub.ai"
37-
CLAWHUB_CLI_PACKAGE: "clawhub@0.21.0"
37+
CLAWHUB_CLI_PACKAGE: "clawhub@0.23.1"
3838

3939
jobs:
4040
resolve_bootstrap_plan:

.github/workflows/plugin-clawhub-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ env:
4242
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"
4343
NODE_VERSION: "24.15.0"
4444
CLAWHUB_REGISTRY: "https://clawhub.ai"
45-
CLAWHUB_CLI_PACKAGE: "clawhub@0.21.0"
45+
CLAWHUB_CLI_PACKAGE: "clawhub@0.23.1"
4646

4747
jobs:
4848
preview_plugins_clawhub:

scripts/plugin-release-pretag-pack-check.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { pathToFileURL } from "node:url";
88
import { collectClawHubPublishablePluginPackages } from "./lib/plugin-clawhub-release.ts";
99
import { collectPublishablePluginPackages } from "./lib/plugin-npm-release.ts";
1010

11-
const DEFAULT_CLAWHUB_CLI_PACKAGE = "clawhub@0.21.0";
11+
const DEFAULT_CLAWHUB_CLI_PACKAGE = "clawhub@0.23.1";
1212

1313
export type PluginReleasePretagPackTarget = {
1414
packageDir: string;

test/scripts/package-acceptance-workflow.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,7 +2114,7 @@ describe("package artifact reuse", () => {
21142114
expect(pluginPretagPackScript).toContain("scripts/check-plugin-npm-runtime-builds.mjs");
21152115
expect(pluginPretagPackScript).toContain("scripts/plugin-npm-publish.sh");
21162116
expect(pluginPretagPackScript).toContain("scripts/plugin-clawhub-publish.sh");
2117-
expect(clawHubWorkflow).toContain('CLAWHUB_CLI_PACKAGE: "clawhub@0.21.0"');
2117+
expect(clawHubWorkflow).toContain('CLAWHUB_CLI_PACKAGE: "clawhub@0.23.1"');
21182118
expect(clawHubWorkflow).not.toContain("CLAWHUB_REPOSITORY:");
21192119
expect(clawHubWorkflow).not.toContain("CLAWHUB_REF:");
21202120
expect(clawHubWorkflow).toContain("pack_plugins_clawhub_artifacts:");
@@ -2287,7 +2287,7 @@ describe("package artifact reuse", () => {
22872287
expect(pluginNpmWorkflow).toContain("environment: npm-release");
22882288
expect(clawHubWorkflow.match(/environment: clawhub-plugin-release/g)?.length).toBe(1);
22892289
expect(clawHubNewWorkflow).toContain("name: Plugin ClawHub New");
2290-
expect(clawHubNewWorkflow).toContain('CLAWHUB_CLI_PACKAGE: "clawhub@0.21.0"');
2290+
expect(clawHubNewWorkflow).toContain('CLAWHUB_CLI_PACKAGE: "clawhub@0.23.1"');
22912291
expect(clawHubNewWorkflow).not.toContain("CLAWHUB_REPOSITORY:");
22922292
expect(clawHubNewWorkflow).not.toContain("CLAWHUB_REF:");
22932293
expect(clawHubNewWorkflow).toContain("environment: clawhub-plugin-bootstrap");

0 commit comments

Comments
 (0)