From 9180627cd8b1967a233761c2c433f8a3f408c3d1 Mon Sep 17 00:00:00 2001 From: Matt Mitchell Date: Thu, 26 Feb 2026 09:50:00 -0700 Subject: [PATCH] make all linux apt-install workflows non-interactive --- .github/workflows/disabled_test_debug_builds.yml.txt | 4 ++-- .github/workflows/test_code_integrity.yml | 2 +- .github/workflows/test_develop_commits.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/disabled_test_debug_builds.yml.txt b/.github/workflows/disabled_test_debug_builds.yml.txt index 1060aee1b93..5667d15512c 100644 --- a/.github/workflows/disabled_test_debug_builds.yml.txt +++ b/.github/workflows/disabled_test_debug_builds.yml.txt @@ -35,7 +35,7 @@ jobs: - name: Install Dependencies for Linux run: | sudo apt-get update - sudo apt-get install libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev lcov gcovr + sudo apt-get install -y libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev lcov gcovr # https://github.com/actions/runner-images/issues/10025 echo "FC=gfortran-13" >> $GITHUB_ENV @@ -104,7 +104,7 @@ jobs: - name: Install Dependencies for Linux run: | sudo apt-get update - sudo apt-get install libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev lcov gcovr + sudo apt-get install -y libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev lcov gcovr # https://github.com/actions/runner-images/issues/10025 echo "FC=gfortran-13" >> $GITHUB_ENV diff --git a/.github/workflows/test_code_integrity.yml b/.github/workflows/test_code_integrity.yml index 2b491e30bcf..d4392c90215 100644 --- a/.github/workflows/test_code_integrity.yml +++ b/.github/workflows/test_code_integrity.yml @@ -191,7 +191,7 @@ jobs: - name: Install cppcheck if: always() - run: sudo apt-get install cppcheck + run: sudo apt-get install -y cppcheck - name: Run CppCheck id: cpp_check_run diff --git a/.github/workflows/test_develop_commits.yml b/.github/workflows/test_develop_commits.yml index a48753f1767..f6e0da9441a 100644 --- a/.github/workflows/test_develop_commits.yml +++ b/.github/workflows/test_develop_commits.yml @@ -79,7 +79,7 @@ jobs: if: ${{ runner.os == 'Linux' }} run: | sudo apt-get update - sudo apt-get install libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev + sudo apt-get install -y libxkbcommon-x11-0 xorg-dev libgl1-mesa-dev if [[ "${{ matrix.os }}" == "ubuntu-24.04" ]]; then # https://github.com/actions/runner-images/issues/10025 echo "FC=gfortran-13" >> $GITHUB_ENV