From 545710e3bfff09f875222b003de9044699769301 Mon Sep 17 00:00:00 2001 From: Alan Wang Date: Tue, 4 Jul 2023 17:02:03 +0800 Subject: [PATCH] upgrade clang to fix actions error (#768) Actions builds are failing because clang-8 is failing to be installed. Upgrade clang-8 to clang-14 to fix this. --- .github/workflows/CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index dc9d17c..b06ab11 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -31,7 +31,7 @@ jobs: - name: install build dependencies run: | sudo apt-get update - sudo apt-get install clang-8 valgrind + sudo apt-get install clang-14 valgrind - name: build and test shell: bash run: |