From f96c45bd50406f68ffd66a4475bad32506c0e1aa Mon Sep 17 00:00:00 2001 From: Riley Scheid Date: Tue, 17 Dec 2024 17:09:47 +0000 Subject: [PATCH] Or ubuntu 20.04 --- .github/workflows/code_formatting.yaml | 4 ++-- check-code-style/action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code_formatting.yaml b/.github/workflows/code_formatting.yaml index 6acd621..072d8bf 100644 --- a/.github/workflows/code_formatting.yaml +++ b/.github/workflows/code_formatting.yaml @@ -33,7 +33,7 @@ concurrency: jobs: check-code-format: name: Code Formatting Check - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 with: @@ -56,4 +56,4 @@ jobs: # is also used by other repos that submodule this repo. - uses: ./check-code-style with: - os: ubuntu-latest + os: ubuntu-20.04 diff --git a/check-code-style/action.yml b/check-code-style/action.yml index a77a6be..27878a9 100644 --- a/check-code-style/action.yml +++ b/check-code-style/action.yml @@ -12,7 +12,7 @@ runs: using: "composite" steps: - name: Install code checking tools if on Ubuntu - if: inputs.os == 'ubuntu-latest' + if: inputs.os == 'ubuntu-latest' || inputs.os == 'ubuntu-20.04' run: | # Install Clang (including clang-format) through LLVM's preferred mechanism: # https://apt.llvm.org/