From 9e2b97490daf49ea93322394b915a7c847f835a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:31:47 +0100 Subject: [PATCH] Use winget instead of chocolatey for Windows figlet installation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7e70e6..85da8cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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