Skip to content

Commit 9523cf2

Browse files
authored
Upgrade to LLVM 19 (#93)
1 parent 2cd6b53 commit 9523cf2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/code_formatting.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
check-code-format:
3535
name: Code Formatting Check
36-
runs-on: ubuntu-20.04
36+
runs-on: ubuntu-latest
3737
steps:
3838
- uses: actions/checkout@v2
3939
with:
@@ -56,4 +56,4 @@ jobs:
5656
# is also used by other repos that submodule this repo.
5757
- uses: ./check-code-style
5858
with:
59-
os: ubuntu-20.04
59+
os: ubuntu-latest

check-code-style/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ runs:
1212
using: "composite"
1313
steps:
1414
- name: Install code checking tools if on Ubuntu
15-
if: inputs.os == 'ubuntu-latest' || inputs.os == 'ubuntu-20.04'
15+
if: inputs.os == 'ubuntu-latest'
1616
run: |
1717
# Install Clang (including clang-format) through LLVM's preferred mechanism:
1818
# https://apt.llvm.org/
19-
CLANG_VERSION=14
19+
CLANG_VERSION=19
2020
wget https://apt.llvm.org/llvm.sh
2121
chmod +x llvm.sh
2222
sudo ./llvm.sh ${CLANG_VERSION}

0 commit comments

Comments
 (0)