From eff33aba382d483c6551a7ef3c3e251df630b76c Mon Sep 17 00:00:00 2001 From: Arash Badie-Modiri Date: Sun, 20 Oct 2024 04:51:15 +0200 Subject: [PATCH] Update workflows --- .github/workflows/lint.yml | 6 +++--- .github/workflows/tests.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index bd6bf1a..f5dcc17 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,16 +7,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: '3.x' architecture: 'x64' - name: upgrade pip run: pip install --upgrade pip - name: install cpplint - run: pip install cpplint==1.4.4 + run: pip install cpplint==2.0.0 - name: run cpplint run: cpplint --extensions=tpp,cpp,hpp --quiet --recursive . diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 83ac071..f325951 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-22.04, windows-2022, macos-12] + os: [ubuntu-24.04, windows-2022, macos-14] steps: - name: Install Pre-requisits on ubuntu @@ -28,7 +28,7 @@ jobs: ninja --version cmake --version - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: cmake build run: | mkdir build