From 0a6cec94cf3578e30be84638b543c9ada8d6a5e2 Mon Sep 17 00:00:00 2001 From: Andrew Ross Date: Wed, 18 Feb 2026 09:17:50 -0600 Subject: [PATCH] 0.9.8 --- .github/workflows/CI.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 3d973ff..e7424a0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,10 +22,6 @@ on: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true -permissions: - contents: read - actions: read - packages: read jobs: lint: @@ -326,6 +322,14 @@ jobs: - name: Install dependencies run: yarn install - name: Download artifacts + id: download_artifacts + uses: actions/download-artifact@v7 + continue-on-error: ${{ matrix.settings.target == 'aarch64-pc-windows-msvc' }} + with: + name: bindings-${{ matrix.settings.target }} + path: . + - name: Retry download artifacts (Windows ARM only) + if: ${{ matrix.settings.target == 'aarch64-pc-windows-msvc' && steps.download_artifacts.outcome == 'failure' }} uses: actions/download-artifact@v7 with: name: bindings-${{ matrix.settings.target }} @@ -524,7 +528,6 @@ jobs: permissions: contents: write id-token: write - actions: read needs: - lint - build-freebsd