From ecb7df85b0d81446751dd2a66ad291c36b69f5f9 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Sat, 9 Aug 2025 12:38:58 -0400 Subject: [PATCH] if: runner.os == 'Linux', with single quotes --- .github/actions/build-dependencies/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-dependencies/action.yml b/.github/actions/build-dependencies/action.yml index da86d011..3187cc07 100644 --- a/.github/actions/build-dependencies/action.yml +++ b/.github/actions/build-dependencies/action.yml @@ -49,7 +49,7 @@ runs: run: | docker system prune -a --volumes sudo apt remove -y *docker* - if: runner.os == "Linux" + if: runner.os == 'Linux' - name: Update system dependencies shell: bash @@ -58,13 +58,13 @@ runs: sudo apt upgrade -y sudo apt autoremove -y sudo apt clean - if: runner.os == "Linux" + if: runner.os == 'Linux' - name: Install rootless Docker uses: docker/setup-docker-action@b60f85385d03ac8acfca6d9996982511d8620a19 with: rootless: true - if: runner.os == "Linux" + if: runner.os == 'Linux' # - name: Cache Rust # uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43