From 9008d8391c1e9fe715bc940213d033e804e1a97a Mon Sep 17 00:00:00 2001 From: Rangi Date: Tue, 7 Jul 2026 02:57:48 -0400 Subject: [PATCH] Consistently use `sudo apt install -Uyq` in workflows (two other cases) --- .github/workflows/checkformat.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/checkformat.yml b/.github/workflows/checkformat.yml index e2188f96..65842b2a 100644 --- a/.github/workflows/checkformat.yml +++ b/.github/workflows/checkformat.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v7 - name: Install clang-format run: | - sudo apt-get -Uyq install clang-format + sudo apt install -Uyq clang-format - name: Check format run: | contrib/checkformat.sh