Skip to content

Commit 57e1a7e

Browse files
committed
ci: upgrade github actions
1 parent b006c49 commit 57e1a7e

12 files changed

Lines changed: 20 additions & 27 deletions

.github/workflows/abi_compliance_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: sudo apt install lcov ^libxcb-* abi-dumper abi-compliance-checker
5858

5959
- name: Install Qt
60-
uses: jurplel/install-qt-action@v3
60+
uses: jurplel/install-qt-action@v4
6161
with:
6262
version: ${{ matrix.qt }}
6363
aqtversion: '==3.1.*'

.github/workflows/build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
run: cmake --version
8181

8282
- name: Install Qt
83-
uses: jurplel/install-qt-action@v3
83+
uses: jurplel/install-qt-action@v4
8484
with:
8585
cache: true
8686
version: ${{ matrix.qt }}

.github/workflows/check_licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
key: ${{ runner.os }}-QtCache
3030

3131
- name: Install Qt
32-
uses: jurplel/install-qt-action@v3
32+
uses: jurplel/install-qt-action@v4
3333
with:
3434
cached: ${{ steps.cache-qt.outputs.cache-hit }}
3535
version: '6.5.0'

.github/workflows/clang-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
repository: ${{ github.event.pull_request.head.repo.full_name }}
1717
ref: ${{ github.event.pull_request.head.ref }}
1818
token: ${{ secrets.CLANG_FORMAT_TOKEN }}
19-
- uses: DoozyX/clang-format-lint-action@v0.16.2
19+
- uses: DoozyX/clang-format-lint-action@v0.17
2020
with:
2121
source: '.'
2222
extensions: 'hpp,cpp'

.github/workflows/codacy-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545

4646
# Upload the SARIF file generated in the previous step
4747
- name: Upload SARIF results file
48-
uses: github/codeql-action/upload-sarif@v4
48+
uses: github/codeql-action/upload-sarif@v3
4949
with:
5050
category: ${{ matrix.app }}
5151
sarif_file: results_${{ matrix.app }}.sarif

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pip3 install conan
4444
4545
- name: Install Qt
46-
uses: jurplel/install-qt-action@v3
46+
uses: jurplel/install-qt-action@v4
4747
with:
4848
version: '6.5.0'
4949
aqtversion: '==3.1.*'
@@ -52,7 +52,7 @@ jobs:
5252
uses: seanmiddleditch/gha-setup-ninja@v5
5353

5454
- name: Initialize CodeQL
55-
uses: github/codeql-action/init@v2
55+
uses: github/codeql-action/init@v3
5656
with:
5757
config-file: ./.github/codeql/codeql-config.yml
5858
languages: ${{ matrix.language }}
@@ -65,6 +65,6 @@ jobs:
6565
run: cmake --build ./build/ci-codeql-unix-debug -- -j2
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v2
68+
uses: github/codeql-action/analyze@v3
6969
with:
7070
category: "/language:${{ matrix.language }}"

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
version: 1.0
6868

6969
- name: Install Qt
70-
uses: jurplel/install-qt-action@v3
70+
uses: jurplel/install-qt-action@v4
7171
with:
7272
cache: true
7373
version: ${{ matrix.qt }}

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: sudo apt install lcov ^libxcb-*
4040

4141
- name: Install Qt
42-
uses: jurplel/install-qt-action@v3
42+
uses: jurplel/install-qt-action@v4
4343
with:
4444
version: '6.5.0'
4545
aqtversion: '==3.1.*'
@@ -52,7 +52,7 @@ jobs:
5252

5353
- name: Get release
5454
id: get_release
55-
uses: bruceadams/get-release@v1.2.3
55+
uses: bruceadams/get-release@v1.3.2
5656
env:
5757
GITHUB_TOKEN: ${{ github.token }}
5858

.github/workflows/doxygen.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
key: ${{ runner.os }}-QtCache
3232

3333
- name: Install Qt
34-
uses: jurplel/install-qt-action@v3
34+
uses: jurplel/install-qt-action@v4
3535
with:
3636
cached: ${{ steps.cache-qt.outputs.cache-hit }}
3737
version: '6.5.0'
@@ -47,8 +47,7 @@ jobs:
4747
run: cmake --workflow --preset workflow-ci-doxygen-unix
4848

4949
- name: Publish doxygen documentation to GitHub Pages
50-
uses: peaceiris/actions-gh-pages@v3
50+
uses: peaceiris/actions-gh-pages@v4
5151
with:
5252
publish_dir: build/ci-doxygen-unix/aide/doc/html
53-
branch: gh_pages
5453
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/install_and_test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
sudo apt install ^libxcb-*
3737
3838
- name: Install Qt
39-
uses: jurplel/install-qt-action@v3
39+
uses: jurplel/install-qt-action@v4
4040
with:
4141
version: ${{ matrix.qt }}
4242
aqtversion: '==3.1.*'
@@ -93,12 +93,11 @@ jobs:
9393
path: artifacts
9494

9595
- name: Publish Unit Test Results installed lib
96-
uses: EnricoMi/publish-unit-test-result-action@v1.4
96+
uses: EnricoMi/publish-unit-test-result-action@v2
9797
with:
9898
github_token: ${{ secrets.GITHUB_TOKEN }}
9999
check_name: Unit Test Results install lib
100-
hide_comments: all but latest
101-
comment_on_pr: true
100+
comment_mode: always
102101
files: artifacts/test_results_installed_lib/build*/**/*.xml
103102
report_individual_runs: true
104103
deduplicate_classes_by_file_name: false

0 commit comments

Comments
 (0)