Pin Windows Claude Code installation to version 2.0.11

Version 2.0.13 has an issue where the Windows installer downloads an
incompatible binary, causing "not a valid application for this OS
platform" errors. Pinning to 2.0.11 as a workaround until the installer
is fixed.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Ashwin Bhat 2025-10-09 16:46:35 -07:00
parent dcd51c9ecb
commit d05b45a42a
No known key found for this signature in database

View file

@ -62,7 +62,7 @@ jobs:
- name: Install Claude Code (Windows)
if: runner.os == 'Windows'
run: |
irm https://claude.ai/install.ps1 | iex
& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) 2.0.10
$claudePath = "$env:USERPROFILE\.local\bin"
echo "$claudePath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: pwsh
@ -105,7 +105,7 @@ jobs:
- name: Install Claude Code (Windows)
if: runner.os == 'Windows'
run: |
irm https://claude.ai/install.ps1 | iex
& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) 2.0.10
$claudePath = "$env:USERPROFILE\.local\bin"
echo "$claudePath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
shell: pwsh