Skip to content

Commit d305ce7

Browse files
committed
ci: fixes
1 parent 6137dd5 commit d305ce7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
pull-requests: write
1616
checks: write
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
2121
fetch-depth: 0 # a full history is required for pull request analysis

.github/workflows/cpack-multi-platform.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313

1414
matrix:
1515
os: [ ubuntu-latest, windows-latest, macos-latest ]
16-
c_compiler: [ gcc-13, clang, cl ]
16+
c_compiler: [ gcc, clang, cl ]
1717
include:
1818
- os: windows-latest
1919
c_compiler: cl
2020
cpp_compiler: cl
2121
- os: ubuntu-latest
22-
c_compiler: gcc-13
23-
cpp_compiler: g++-13
22+
c_compiler: gcc
23+
cpp_compiler: g++
2424
- os: macos-latest
2525
c_compiler: clang
2626
cpp_compiler: clang++
2727
exclude:
2828
- os: windows-latest
29-
c_compiler: gcc-13
29+
c_compiler: gcc
3030
- os: windows-latest
3131
c_compiler: clang
3232
- os: ubuntu-latest
@@ -36,7 +36,7 @@ jobs:
3636
- os: macos-latest
3737
c_compiler: cl
3838
- os: macos-latest
39-
c_compiler: gcc-13
39+
c_compiler: gcc
4040

4141
steps:
4242
- name: Upgrade Build Tools and install Ninja

qodana.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version: "1.0"
66

77
#Specify inspection profile for code analysis
88
profile:
9-
name: qodana.starter
9+
name: qodana.recommended
1010

1111
#Enable inspections
1212
#include:
@@ -26,4 +26,4 @@ profile:
2626
# - id: <plugin.id> #(plugin id can be found at https://plugins.jetbrains.com)
2727

2828
#Specify Qodana linter for analysis (Applied in CI/CD pipeline)
29-
linter: jetbrains/qodana-<linter>:latest
29+
linter: jetbrains/qodana-clang:latest

0 commit comments

Comments
 (0)