Skip to content

Commit

Permalink
Fix github action (#2697)
Browse files Browse the repository at this point in the history
* Fix github action

* While we're at it, also update other actions and qt version
  • Loading branch information
ctrlaltca authored Mar 5, 2025
1 parent ca7cb5a commit e685c96
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_linux_qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: build-linux-qt5-release

- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4

- name: Install other prerequisites
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_linux_qt6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: build-linux-qt6-release

- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: 6.6.2
version: 6.8.2
modules: qt5compat qtmultimedia

- name: Install other prerequisites
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ jobs:
runs-on: macos-13
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ccache
uses: hendrikmuhs/[email protected]
with:
key: build-macos-release

- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: 6.6.2
version: 6.8.2
modules: qt5compat qtmultimedia

- name: Install other prerequisites
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
--app-drop-link 600 185 "${{ env.dmg_name }}.dmg" "build/KVIrc.app"
- name: Publish artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.dmg_name }}.dmg
path: ${{ env.dmg_name }}.dmg
8 changes: 4 additions & 4 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup devcmd
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -33,9 +33,9 @@ jobs:
core.exportVariable('ACTIONS_RUNTIME_TOKEN', (process.env.ACTIONS_RUNTIME_TOKEN || ''));
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: 6.6.2
version: 6.8.2
modules: qt5compat qtmultimedia
cache: true

Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
move KVIrc.exe ${{ env.exe_name }}.exe
- name: Publish artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.exe_name }}.exe
path: build/${{ env.exe_name }}.exe
6 changes: 3 additions & 3 deletions .github/workflows/build_windows_qt5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup devcmd
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -33,7 +33,7 @@ jobs:
core.exportVariable('ACTIONS_RUNTIME_TOKEN', (process.env.ACTIONS_RUNTIME_TOKEN || ''));
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: 5.15.2
cache: true
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
move KVIrc.exe ${{ env.exe_name }}.exe
- name: Publish artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.exe_name }}.exe
path: build/${{ env.exe_name }}.exe

0 comments on commit e685c96

Please sign in to comment.