summaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
diff options
context:
space:
mode:
authorFinlay Davidson <finlay.davidson@coderclass.nl>2023-01-03 14:05:30 +0000
committerJF <JF002@users.noreply.github.com>2023-01-04 17:15:33 +0100
commiteda96ffadc824742bf937c58f5295c86389a6d5e (patch)
tree1780b2fff3719f721c534cee192d28da945c9ff9 /.github/workflows/format.yml
parent318a243df1ad844ed487b936eb7edde876fc5ef6 (diff)
Update clang-{format,tidy} to 14
Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
Diffstat (limited to '.github/workflows/format.yml')
-rw-r--r--.github/workflows/format.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml
index 23f71a94..32451a0b 100644
--- a/.github/workflows/format.yml
+++ b/.github/workflows/format.yml
@@ -23,7 +23,7 @@ jobs:
- name: Install clang-format
run: |
sudo apt-get update
- sudo apt-get -y install clang-format-12
+ sudo apt-get -y install clang-format-14
- name: Check formatting
run: tests/test-format.sh
@@ -55,7 +55,7 @@ jobs:
- name: Install clang-tidy
run: |
apt-get update
- apt-get -y install clang-tidy-12
+ apt-get -y install clang-tidy-14
- name: Prepare environment
shell: bash
env: