From cea1bbde23fe72878635e19787045d192b71c03f Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Wed, 2 Mar 2022 19:39:35 +0000 Subject: [PATCH 1/4] GHA CI: Update `checkout` action to `v3` --- .github/workflows/ci_file_health.yaml | 2 +- .github/workflows/ci_macos.yaml | 2 +- .github/workflows/ci_ubuntu.yaml | 2 +- .github/workflows/ci_webui.yaml | 2 +- .github/workflows/ci_windows.yaml | 2 +- .github/workflows/coverity-scan.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_file_health.yaml b/.github/workflows/ci_file_health.yaml index 57fbe68f9..6d9699ccd 100644 --- a/.github/workflows/ci_file_health.yaml +++ b/.github/workflows/ci_file_health.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install tools uses: actions/setup-python@v2 diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index 5e9f88c3b..ffa792294 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index 141c29149..db9cf211c 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | diff --git a/.github/workflows/ci_webui.yaml b/.github/workflows/ci_webui.yaml index 6ffaf768d..18d0e985c 100644 --- a/.github/workflows/ci_webui.yaml +++ b/.github/workflows/ci_webui.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup nodejs uses: actions/setup-node@v3 diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index 38d2357f6..e819ac10f 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup devcmd uses: ilammy/msvc-dev-cmd@v1 diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index 9064efda9..10d91b284 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | From 4dcd6df136c2594e47386cd25c732e101ddcaeb8 Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Wed, 2 Mar 2022 19:41:43 +0000 Subject: [PATCH 2/4] GHA CI: Update `setup-python` action to `v3` --- .github/workflows/ci_file_health.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_file_health.yaml b/.github/workflows/ci_file_health.yaml index 6d9699ccd..4fb635962 100644 --- a/.github/workflows/ci_file_health.yaml +++ b/.github/workflows/ci_file_health.yaml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: Install tools - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 - name: Check files uses: pre-commit/action@v2.0.3 From a63515b8f4567e0ca00c382ab3819406dc66eb92 Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Wed, 2 Mar 2022 19:44:46 +0000 Subject: [PATCH 3/4] GHA CI: Update `stale` action to `v5` --- .github/workflows/stale_bot.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/stale_bot.yaml b/.github/workflows/stale_bot.yaml index 5d5006a5e..4cb991b87 100644 --- a/.github/workflows/stale_bot.yaml +++ b/.github/workflows/stale_bot.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Mark and close stale PRs - uses: actions/stale@v4 + uses: actions/stale@v5 with: stale-pr-message: "This PR is stale because it has been 60 days with no activity. This PR will be automatically closed within 7 days if there is no further activity." close-pr-message: "This PR was closed because it has been stalled for some time with no activity." From 074cbdad28c36a4ef61cfea60ba2c3d206d5248a Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Fri, 4 Mar 2022 23:13:36 +0000 Subject: [PATCH 4/4] GHA CI: Update `upload-artifact` action to `v3` --- .github/workflows/ci_macos.yaml | 2 +- .github/workflows/ci_ubuntu.yaml | 2 +- .github/workflows/ci_windows.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index ffa792294..82b2afad0 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -115,7 +115,7 @@ jobs: cp libtorrent/build/compile_commands.json upload/cmake/libtorrent - name: Upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: build-info_macOS_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} path: upload diff --git a/.github/workflows/ci_ubuntu.yaml b/.github/workflows/ci_ubuntu.yaml index db9cf211c..5382160d8 100644 --- a/.github/workflows/ci_ubuntu.yaml +++ b/.github/workflows/ci_ubuntu.yaml @@ -101,7 +101,7 @@ jobs: cp libtorrent/build/compile_commands.json upload/cmake/libtorrent - name: Upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: build-info_ubuntu-20.04-x64_${{ matrix.qbt_gui }}_libtorrent-${{ matrix.libt_version }}_Qt-${{ matrix.qt_version }} path: upload diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index e819ac10f..bd9392ccf 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -154,7 +154,7 @@ jobs: copy libtorrent/build/compile_commands.json upload/cmake/libtorrent - name: Upload build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: qBittorrent-CI_Windows-x64_libtorrent-${{ matrix.libt_version }} path: upload