From dccf0becf2795a9a5458570ac1b123bcd4542e96 Mon Sep 17 00:00:00 2001 From: Philipp Borgers Date: Tue, 1 Nov 2022 19:06:28 +0100 Subject: [PATCH] Github actions: Update install-qt-action to version 3 Fixes deprecation warning in build process: "Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout, jurplel/install-qt-action, actions/cache, EthanSK/git-branch-name-action, actions/cache, actions/checkout" --- .github/workflows/linux_debug.yml | 2 +- .github/workflows/linux_release.yml | 2 +- .github/workflows/windows_release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux_debug.yml b/.github/workflows/linux_debug.yml index f9d5f77..77dfe7d 100644 --- a/.github/workflows/linux_debug.yml +++ b/.github/workflows/linux_debug.yml @@ -28,7 +28,7 @@ jobs: submodules: recursive - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ env.QT_VERSION }} host: linux diff --git a/.github/workflows/linux_release.yml b/.github/workflows/linux_release.yml index 496921f..a74e153 100644 --- a/.github/workflows/linux_release.yml +++ b/.github/workflows/linux_release.yml @@ -37,7 +37,7 @@ jobs: git fetch --all --tags -f - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ env.QT_VERSION }} host: linux diff --git a/.github/workflows/windows_release.yml b/.github/workflows/windows_release.yml index 05193af..6f87403 100644 --- a/.github/workflows/windows_release.yml +++ b/.github/workflows/windows_release.yml @@ -37,7 +37,7 @@ jobs: git fetch --all --tags -f - name: Install Qt - uses: jurplel/install-qt-action@v2 + uses: jurplel/install-qt-action@v3 with: version: ${{ env.QT_VERSION }} host: windows