Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix github action #2697

Merged
merged 2 commits into from
Mar 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading