From 9c8d3f2c57a3cdecc44a3e1ea3a0b734a9543927 Mon Sep 17 00:00:00 2001 From: Luan Santos Date: Sat, 9 Dec 2023 13:51:40 -0800 Subject: [PATCH] don't install linux headers --- .github/workflows/analysis-sonarcloud.yml | 2 +- .github/workflows/build-ubuntu.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/analysis-sonarcloud.yml b/.github/workflows/analysis-sonarcloud.yml index 577e80e2f16..e7010b20e92 100644 --- a/.github/workflows/analysis-sonarcloud.yml +++ b/.github/workflows/analysis-sonarcloud.yml @@ -38,7 +38,7 @@ jobs: - name: Install Linux Dependencies run: > - sudo apt-get update && sudo apt-get install ccache linux-headers-$(uname -r) + sudo apt-get update && sudo apt-get install ccache - name: CCache id: ccache diff --git a/.github/workflows/build-ubuntu.yml b/.github/workflows/build-ubuntu.yml index e6cecea38b2..87b8bf251a3 100644 --- a/.github/workflows/build-ubuntu.yml +++ b/.github/workflows/build-ubuntu.yml @@ -49,7 +49,7 @@ jobs: - name: Install Linux Dependencies run: > - sudo apt-get update && sudo apt-get install ccache linux-headers-$(uname -r) + sudo apt-get update && sudo apt-get install ccache - name: Switch to gcc-11 if: matrix.os == 'ubuntu-20.04'