Skip to content

Commit d05b45a

Browse files
ashwin-antclaude
andcommitted
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 <[email protected]>
1 parent dcd51c9 commit d05b45a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- name: Install Claude Code (Windows)
6363
if: runner.os == 'Windows'
6464
run: |
65-
irm https://claude.ai/install.ps1 | iex
65+
& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) 2.0.10
6666
$claudePath = "$env:USERPROFILE\.local\bin"
6767
echo "$claudePath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
6868
shell: pwsh
@@ -105,7 +105,7 @@ jobs:
105105
- name: Install Claude Code (Windows)
106106
if: runner.os == 'Windows'
107107
run: |
108-
irm https://claude.ai/install.ps1 | iex
108+
& ([scriptblock]::Create((irm https://claude.ai/install.ps1))) 2.0.10
109109
$claudePath = "$env:USERPROFILE\.local\bin"
110110
echo "$claudePath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
111111
shell: pwsh

0 commit comments

Comments
 (0)