Use winget instead of chocolatey for Windows figlet installation

Chocolatey installation was failing in CI. Winget is built into
Windows and provides a more reliable installation method.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-09 03:31:47 +01:00
parent 24f2dae24f
commit 9e2b97490d

View File

@@ -78,9 +78,7 @@ jobs:
- name: Install figlet (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install figlet -y
echo "C:\ProgramData\chocolatey\lib\figlet\tools" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
run: winget install --id GnuWin32.Figlet -e --accept-source-agreements --accept-package-agreements
- name: Cache cargo registry
uses: actions/cache@v3