diff --git a/.github/workflows/python_safety.yml b/.github/workflows/python_safety.yml index 0c5d0fb44..2a1df0a6f 100644 --- a/.github/workflows/python_safety.yml +++ b/.github/workflows/python_safety.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-24.04 steps: - run: sudo apt-get -q update - - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956 + - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956 - run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install gcc libcurl4-openssl-dev libssl-dev - uses: actions/checkout@v4 diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index bb01290bc..2d7f421b0 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -27,7 +27,7 @@ jobs: with: python-version: ${{ matrix.python }} - run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for - - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956 + - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956 - run: sudo apt-get -q update - run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends dist-upgrade - run: sudo DEBIAN_FRONTEND="noninteractive" apt-get -qq --no-install-recommends install diff --git a/.github/workflows/ubuntu_build.yml b/.github/workflows/ubuntu_build.yml index 776c21a2d..26e963bd3 100644 --- a/.github/workflows/ubuntu_build.yml +++ b/.github/workflows/ubuntu_build.yml @@ -18,7 +18,7 @@ jobs: name: "Test on ${{ matrix.dist }}" steps: - run: sudo apt-mark hold grub-efi-amd64-signed # GRUB does not always find the drive it was configured for - - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; done # https://github.com/actions/runner-images/pull/9956 + - run: if [ '${{ matrix.dist }}' = 'ubuntu-24.04' ]; then apt-get autopurge needrestart; fi # https://github.com/actions/runner-images/pull/9956 - run: sudo apt-get -q update - run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends dist-upgrade - run: sudo DEBIAN_FRONTEND=noninteractive apt-get -qq --no-install-recommends install