Compare commits

...

2 Commits

Author SHA1 Message Date
Ashwin Bhat
3c5b0a6e9c tmp 2025-08-05 10:52:43 -07:00
GitHub Actions
2845685880 chore: bump Claude Code version to 1.0.68 2025-08-04 23:29:44 +00:00
3 changed files with 3 additions and 3 deletions

View File

@@ -172,7 +172,7 @@ runs:
echo "Base-action dependencies installed"
cd -
# Install Claude Code globally
bun install -g @anthropic-ai/claude-code@1.0.67
bun install -g @anthropic-ai/claude-code@1.0.68
- name: Setup Network Restrictions
if: steps.prepare.outputs.contains_trigger == 'true' && inputs.experimental_allowed_domains != ''

View File

@@ -118,7 +118,7 @@ runs:
- name: Install Claude Code
shell: bash
run: bun install -g @anthropic-ai/claude-code@1.0.67
run: bun install -g @anthropic-ai/claude-code@1.0.68
- name: Run Claude Code Action
shell: bash

View File

@@ -33,7 +33,7 @@ export async function configureGitAuth(
if (user) {
const botName = user.login;
const botId = user.id;
console.log(`Setting git user as ${botName}...`);
console.log(`Setting git user as ${botName} (id: ${botId})...`);
await $`git config user.name "${botName}"`;
await $`git config user.email "${botId}+${botName}@${noreplyDomain}"`;
console.log(`✓ Set git user as ${botName}`);