diff --git a/.github/actions/rust/sccache/setup-sccache-windows/action.yml b/.github/actions/rust/sccache/setup-sccache-windows/action.yml index 9c0a237635..c44f4d6db4 100644 --- a/.github/actions/rust/sccache/setup-sccache-windows/action.yml +++ b/.github/actions/rust/sccache/setup-sccache-windows/action.yml @@ -7,6 +7,8 @@ runs: shell: pwsh run: | Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh') + # use preinstalled 7-zip to avoid unreliable installs + scoop config '7ZIPEXTRACT_USE_EXTERNAL' $true scoop install sccache echo "${HOME}/scoop/apps/sccache/current" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6a2dfeee27..decf6df6d1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -12,7 +12,7 @@ on: - epic/* paths: - '.github/workflows/build-and-test.yml' - - '.github/actions' + - '.github/actions/**' - '**.rs' - '**.toml'