diff options
| author | 2025-06-16 22:22:29 +0200 | |
|---|---|---|
| committer | 2025-06-16 22:22:29 +0200 | |
| commit | 5882316f4ccd20a768ae296e1d7efcdfed45d0a3 (patch) | |
| tree | f1ca261563b7102991e19962d4027e46313015a4 /.github | |
| parent | Support sending authorization ID in SASL EXTERNAL (#2700) (diff) | |
| download | KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.tar.gz KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.tar.bz2 KVIrc-5882316f4ccd20a768ae296e1d7efcdfed45d0a3.zip | |
KviControlCodes: fix compilation with Qt >= 6.9 (#2705)
* KviControlCodes: Qt >= 6.9's QChar removed implicit casts from ctors, add explicit cast to accommodate
* Update github action jobs
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build_linux_qt5.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build_linux_qt6.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build_macos.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/build_windows.yml | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/build_linux_qt5.yml b/.github/workflows/build_linux_qt5.yml index c447d3aff..90f521499 100644 --- a/.github/workflows/build_linux_qt5.yml +++ b/.github/workflows/build_linux_qt5.yml @@ -26,6 +26,8 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v4 + with: + version: 5.15.2 - name: Install other prerequisites run: | diff --git a/.github/workflows/build_linux_qt6.yml b/.github/workflows/build_linux_qt6.yml index 81abd4c6b..61c663acf 100644 --- a/.github/workflows/build_linux_qt6.yml +++ b/.github/workflows/build_linux_qt6.yml @@ -27,7 +27,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v4 with: - version: 6.8.2 + version: 6.9.1 modules: qt5compat qtmultimedia - name: Install other prerequisites diff --git a/.github/workflows/build_macos.yml b/.github/workflows/build_macos.yml index bc91e876e..7291b0e41 100644 --- a/.github/workflows/build_macos.yml +++ b/.github/workflows/build_macos.yml @@ -27,7 +27,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v4 with: - version: 6.8.2 + version: 6.9.1 modules: qt5compat qtmultimedia - name: Install other prerequisites diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 366f7c938..18ce558c0 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -35,7 +35,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v4 with: - version: 6.8.2 + version: 6.9.1 modules: qt5compat qtmultimedia cache: true |
