From 0af2a7a9b7f599dcbedc24c64ce8b87ee8c28564 Mon Sep 17 00:00:00 2001 From: LingMan Date: Wed, 1 Feb 2023 03:00:20 +0100 Subject: [PATCH] Upgrade GitHub action `dessant/lock-threads` to v4 In v3 several input parameters where renamed and since v4 it requires Node.js 16. This resolves warnings about Node.js 12 and `set-output` being deprecated and slated for removal in the `Lock threads` workflow. --- .github/workflows/lockthreads.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lockthreads.yml b/.github/workflows/lockthreads.yml index 65ff08d0f..a97a5792b 100644 --- a/.github/workflows/lockthreads.yml +++ b/.github/workflows/lockthreads.yml @@ -17,9 +17,9 @@ jobs: pull-requests: write # for dessant/lock-threads to lock PRs runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v2 + - uses: dessant/lock-threads@v4 with: github-token: ${{ github.token }} - issue-lock-inactive-days: '365' - pr-lock-inactive-days: '365' - issue-exclude-labels: 'question, needs more info' + issue-inactive-days: '365' + pr-inactive-days: '365' + exclude-any-issue-labels: 'question, needs more info'