From d305ce7b138dc8260e81939f9b8d6cec30009d02 Mon Sep 17 00:00:00 2001 From: Ian Duncan <76043277+dr8co@users.noreply.github.com> Date: Mon, 20 May 2024 02:05:00 +0300 Subject: [PATCH] ci: fixes --- .github/workflows/code_quality.yml | 2 +- .github/workflows/cpack-multi-platform.yml | 10 +++++----- qodana.yaml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/code_quality.yml b/.github/workflows/code_quality.yml index 3b7b1e8..3cd931b 100644 --- a/.github/workflows/code_quality.yml +++ b/.github/workflows/code_quality.yml @@ -15,7 +15,7 @@ jobs: pull-requests: write checks: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit fetch-depth: 0 # a full history is required for pull request analysis diff --git a/.github/workflows/cpack-multi-platform.yml b/.github/workflows/cpack-multi-platform.yml index 0178565..146586b 100644 --- a/.github/workflows/cpack-multi-platform.yml +++ b/.github/workflows/cpack-multi-platform.yml @@ -13,20 +13,20 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - c_compiler: [ gcc-13, clang, cl ] + c_compiler: [ gcc, clang, cl ] include: - os: windows-latest c_compiler: cl cpp_compiler: cl - os: ubuntu-latest - c_compiler: gcc-13 - cpp_compiler: g++-13 + c_compiler: gcc + cpp_compiler: g++ - os: macos-latest c_compiler: clang cpp_compiler: clang++ exclude: - os: windows-latest - c_compiler: gcc-13 + c_compiler: gcc - os: windows-latest c_compiler: clang - os: ubuntu-latest @@ -36,7 +36,7 @@ jobs: - os: macos-latest c_compiler: cl - os: macos-latest - c_compiler: gcc-13 + c_compiler: gcc steps: - name: Upgrade Build Tools and install Ninja diff --git a/qodana.yaml b/qodana.yaml index 76fb7ad..fc1649b 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -6,7 +6,7 @@ version: "1.0" #Specify inspection profile for code analysis profile: - name: qodana.starter + name: qodana.recommended #Enable inspections #include: @@ -26,4 +26,4 @@ profile: # - id: #(plugin id can be found at https://plugins.jetbrains.com) #Specify Qodana linter for analysis (Applied in CI/CD pipeline) -linter: jetbrains/qodana-:latest +linter: jetbrains/qodana-clang:latest