From 9cc9c2f1fe719949a6ec7cabb1ee9382336565fa Mon Sep 17 00:00:00 2001 From: Silverlan Date: Sun, 2 Jun 2024 09:25:19 +0200 Subject: [PATCH] ci(linux): purge needrestart See https://github.com/actions/runner-images/pull/9956 --- github_actions/install_requirements/action.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/github_actions/install_requirements/action.yml b/github_actions/install_requirements/action.yml index 6e70c53bc..70df8031f 100644 --- a/github_actions/install_requirements/action.yml +++ b/github_actions/install_requirements/action.yml @@ -12,13 +12,12 @@ runs: with: name: "pragma > install_requirements" - # This is a temporary fix for https://github.com/actions/runner-images/issues/9937 - # We have to install libssl-dev before "apt-get update" is called, otherwise the workflow will fail - - name: Install libssl-dev + # This is a temporary fix until https://github.com/actions/runner-images/pull/9956 has been merged + - name: Purge needrestart shell: bash if: ${{ runner.os == 'Linux' }} run: | - sudo apt-get install libssl-dev + sudo apt-get purge needrestart # Required for CUDA - name: Set up GCC 11