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