From 1fb615ae9fff785da14db7774a37c5f22b464498 Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 17 Mar 2026 14:16:45 -0700 Subject: [PATCH 1/4] Switch to node 24. --- .github/actions/AddComment/action.yml | 2 +- .github/actions/Locker/action.yml | 2 +- .github/actions/Reopener/action.yml | 2 +- .github/actions/StaleCloser/action.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/AddComment/action.yml b/.github/actions/AddComment/action.yml index 8820d6b59..02419ddcd 100644 --- a/.github/actions/AddComment/action.yml +++ b/.github/actions/AddComment/action.yml @@ -38,5 +38,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node20' + using: 'node24' main: 'index.js' diff --git a/.github/actions/Locker/action.yml b/.github/actions/Locker/action.yml index 0b20af00a..8b850faa3 100644 --- a/.github/actions/Locker/action.yml +++ b/.github/actions/Locker/action.yml @@ -29,5 +29,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node20' + using: 'node24' main: 'index.js' diff --git a/.github/actions/Reopener/action.yml b/.github/actions/Reopener/action.yml index f12a1443d..128d23d79 100644 --- a/.github/actions/Reopener/action.yml +++ b/.github/actions/Reopener/action.yml @@ -33,5 +33,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node20' + using: 'node24' main: 'index.js' diff --git a/.github/actions/StaleCloser/action.yml b/.github/actions/StaleCloser/action.yml index c081109eb..43c1bba66 100644 --- a/.github/actions/StaleCloser/action.yml +++ b/.github/actions/StaleCloser/action.yml @@ -43,5 +43,5 @@ inputs: readonly: description: If true, changes are not applied. runs: - using: 'node20' + using: 'node24' main: 'index.js' From ebffb528c342faeef1312327f77277ded8dfbecf Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 17 Mar 2026 14:28:05 -0700 Subject: [PATCH 2/4] More fixes. --- .github/workflows/bug-debugger.yml | 3 +++ .github/workflows/by-design-closer-debugger .yml | 3 +++ .github/workflows/by-design-closer.yml | 3 +++ .github/workflows/ci_linux.yml | 3 +++ .github/workflows/ci_mac.yml | 3 +++ .github/workflows/ci_windows.yml | 3 +++ .github/workflows/codeql.yml | 3 +++ .github/workflows/duplicate-closer.yml | 3 +++ .github/workflows/enhancement-closer-no-milestone.yml | 3 +++ .github/workflows/enhancement-closer-triage.yml | 3 +++ .github/workflows/enhancement-reopener.yml | 3 +++ .github/workflows/external-closer-debugger.yml | 3 +++ .github/workflows/feature-request-closer-no-milestone.yml | 3 +++ .github/workflows/feature-request-closer-triage.yml | 3 +++ .github/workflows/feature-request-debugger.yml | 3 +++ .github/workflows/feature-request-reopener.yml | 3 +++ .github/workflows/investigate-closer-debugger.yml | 3 +++ .github/workflows/investigate-costing-closer-debugger.yml | 3 +++ .github/workflows/job-compile-and-test.yml | 7 +++++-- .github/workflows/locker.yml | 3 +++ .github/workflows/more-info-needed-closer-debugger.yml | 3 +++ .github/workflows/more-info-needed-closer.yml | 3 +++ .github/workflows/question-closer-debugger.yml | 3 +++ .github/workflows/question-closer.yml | 3 +++ 24 files changed, 74 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bug-debugger.yml b/.github/workflows/bug-debugger.yml index 2ac8f2f53..a3542e7fe 100644 --- a/.github/workflows/bug-debugger.yml +++ b/.github/workflows/bug-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/by-design-closer-debugger .yml b/.github/workflows/by-design-closer-debugger .yml index 3d390c3d4..d3fc71240 100644 --- a/.github/workflows/by-design-closer-debugger .yml +++ b/.github/workflows/by-design-closer-debugger .yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/by-design-closer.yml b/.github/workflows/by-design-closer.yml index 719478e53..76a307eee 100644 --- a/.github/workflows/by-design-closer.yml +++ b/.github/workflows/by-design-closer.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 85847d1fc..499b2d923 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: job: uses: ./.github/workflows/job-compile-and-test.yml diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 7dfe198dd..2490bcd24 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: job: uses: ./.github/workflows/job-compile-and-test.yml diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index 9bdfea1d1..e46f49c33 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -6,6 +6,9 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: job: uses: ./.github/workflows/job-compile-and-test.yml diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3332d12a2..19feb94fd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,6 +19,9 @@ on: schedule: - cron: '29 4 * * 3' +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: analyze: name: Analyze (${{ matrix.language }}) diff --git a/.github/workflows/duplicate-closer.yml b/.github/workflows/duplicate-closer.yml index 736bab5ab..e06a61498 100644 --- a/.github/workflows/duplicate-closer.yml +++ b/.github/workflows/duplicate-closer.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/enhancement-closer-no-milestone.yml b/.github/workflows/enhancement-closer-no-milestone.yml index 736e91e04..e707a361f 100644 --- a/.github/workflows/enhancement-closer-no-milestone.yml +++ b/.github/workflows/enhancement-closer-no-milestone.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/enhancement-closer-triage.yml b/.github/workflows/enhancement-closer-triage.yml index 543bb972f..7a67a2650 100644 --- a/.github/workflows/enhancement-closer-triage.yml +++ b/.github/workflows/enhancement-closer-triage.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/enhancement-reopener.yml b/.github/workflows/enhancement-reopener.yml index df3d486f6..bad43b959 100644 --- a/.github/workflows/enhancement-reopener.yml +++ b/.github/workflows/enhancement-reopener.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/external-closer-debugger.yml b/.github/workflows/external-closer-debugger.yml index e2181415d..93202af1f 100644 --- a/.github/workflows/external-closer-debugger.yml +++ b/.github/workflows/external-closer-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/feature-request-closer-no-milestone.yml b/.github/workflows/feature-request-closer-no-milestone.yml index f314c89ff..4d63f315a 100644 --- a/.github/workflows/feature-request-closer-no-milestone.yml +++ b/.github/workflows/feature-request-closer-no-milestone.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/feature-request-closer-triage.yml b/.github/workflows/feature-request-closer-triage.yml index f1bd800ec..0fb573a47 100644 --- a/.github/workflows/feature-request-closer-triage.yml +++ b/.github/workflows/feature-request-closer-triage.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/feature-request-debugger.yml b/.github/workflows/feature-request-debugger.yml index 1da2d3e6c..0bce2b55e 100644 --- a/.github/workflows/feature-request-debugger.yml +++ b/.github/workflows/feature-request-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/feature-request-reopener.yml b/.github/workflows/feature-request-reopener.yml index a47392801..c8a346b33 100644 --- a/.github/workflows/feature-request-reopener.yml +++ b/.github/workflows/feature-request-reopener.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/investigate-closer-debugger.yml b/.github/workflows/investigate-closer-debugger.yml index f709ba8f5..5707f83be 100644 --- a/.github/workflows/investigate-closer-debugger.yml +++ b/.github/workflows/investigate-closer-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/investigate-costing-closer-debugger.yml b/.github/workflows/investigate-costing-closer-debugger.yml index 142f58703..7da091d8e 100644 --- a/.github/workflows/investigate-costing-closer-debugger.yml +++ b/.github/workflows/investigate-costing-closer-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/job-compile-and-test.yml b/.github/workflows/job-compile-and-test.yml index 2468e22a8..63e7b3b34 100644 --- a/.github/workflows/job-compile-and-test.yml +++ b/.github/workflows/job-compile-and-test.yml @@ -14,6 +14,9 @@ on: yarn-args: type: string +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: build: runs-on: ${{ inputs.runner-env }} @@ -21,10 +24,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Use Node.js 22 + - name: Use Node.js 24 uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 24 - name: Install Dependencies run: yarn install ${{ inputs.yarn-args }} diff --git a/.github/workflows/locker.yml b/.github/workflows/locker.yml index e965d2fdd..069f7bb4b 100644 --- a/.github/workflows/locker.yml +++ b/.github/workflows/locker.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/more-info-needed-closer-debugger.yml b/.github/workflows/more-info-needed-closer-debugger.yml index 52c3dc12f..b1c723898 100644 --- a/.github/workflows/more-info-needed-closer-debugger.yml +++ b/.github/workflows/more-info-needed-closer-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/more-info-needed-closer.yml b/.github/workflows/more-info-needed-closer.yml index b02f83bab..10b84f7c4 100644 --- a/.github/workflows/more-info-needed-closer.yml +++ b/.github/workflows/more-info-needed-closer.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/question-closer-debugger.yml b/.github/workflows/question-closer-debugger.yml index 32e48268c..6343f6a6f 100644 --- a/.github/workflows/question-closer-debugger.yml +++ b/.github/workflows/question-closer-debugger.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest diff --git a/.github/workflows/question-closer.yml b/.github/workflows/question-closer.yml index a01c4d74b..8d7ab282f 100644 --- a/.github/workflows/question-closer.yml +++ b/.github/workflows/question-closer.yml @@ -8,6 +8,9 @@ on: description: "readonly: Specify true or 1 to prevent changes from being commited to GitHub" default: false +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: main: runs-on: ubuntu-latest From 71bedfd4a6f1454b69dc305eebe64f66848d2f9b Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 17 Mar 2026 15:05:31 -0700 Subject: [PATCH 3/4] Also update the runner-env images. --- .github/workflows/bug-debugger.yml | 2 +- .github/workflows/by-design-closer-debugger .yml | 2 +- .github/workflows/by-design-closer.yml | 2 +- .github/workflows/ci_linux.yml | 4 ++-- .github/workflows/ci_mac.yml | 4 ++-- .github/workflows/ci_windows.yml | 2 +- .github/workflows/duplicate-closer.yml | 2 +- .github/workflows/enhancement-closer-no-milestone.yml | 2 +- .github/workflows/enhancement-closer-triage.yml | 2 +- .github/workflows/enhancement-reopener.yml | 2 +- .github/workflows/external-closer-debugger.yml | 2 +- .github/workflows/feature-request-closer-no-milestone.yml | 2 +- .github/workflows/feature-request-closer-triage.yml | 2 +- .github/workflows/feature-request-debugger.yml | 2 +- .github/workflows/feature-request-reopener.yml | 2 +- .github/workflows/investigate-closer-debugger.yml | 2 +- .github/workflows/investigate-costing-closer-debugger.yml | 2 +- .github/workflows/job-compile-and-test.yml | 2 +- .github/workflows/locker.yml | 2 +- .github/workflows/more-info-needed-closer-debugger.yml | 2 +- .github/workflows/more-info-needed-closer.yml | 2 +- .github/workflows/question-closer-debugger.yml | 2 +- .github/workflows/question-closer.yml | 2 +- 23 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/bug-debugger.yml b/.github/workflows/bug-debugger.yml index a3542e7fe..2faffab5b 100644 --- a/.github/workflows/bug-debugger.yml +++ b/.github/workflows/bug-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment diff --git a/.github/workflows/by-design-closer-debugger .yml b/.github/workflows/by-design-closer-debugger .yml index d3fc71240..89a669b61 100644 --- a/.github/workflows/by-design-closer-debugger .yml +++ b/.github/workflows/by-design-closer-debugger .yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/by-design-closer.yml b/.github/workflows/by-design-closer.yml index 76a307eee..fafe7a777 100644 --- a/.github/workflows/by-design-closer.yml +++ b/.github/workflows/by-design-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/ci_linux.yml b/.github/workflows/ci_linux.yml index 499b2d923..6b1c3f63e 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -13,5 +13,5 @@ jobs: job: uses: ./.github/workflows/job-compile-and-test.yml with: - runner-env: ubuntu-22.04 - platform: linux \ No newline at end of file + runner-env: ubuntu-24.04 + platform: linux diff --git a/.github/workflows/ci_mac.yml b/.github/workflows/ci_mac.yml index 2490bcd24..1ecbcd5b0 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -13,6 +13,6 @@ jobs: job: uses: ./.github/workflows/job-compile-and-test.yml with: - runner-env: macos-14 + runner-env: macos-15 platform: mac - yarn-args: --network-timeout 100000 \ No newline at end of file + yarn-args: --network-timeout 100000 diff --git a/.github/workflows/ci_windows.yml b/.github/workflows/ci_windows.yml index e46f49c33..bcf98b07c 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -13,5 +13,5 @@ jobs: job: uses: ./.github/workflows/job-compile-and-test.yml with: - runner-env: windows-2022 + runner-env: windows-2025 platform: windows diff --git a/.github/workflows/duplicate-closer.yml b/.github/workflows/duplicate-closer.yml index e06a61498..63647dad9 100644 --- a/.github/workflows/duplicate-closer.yml +++ b/.github/workflows/duplicate-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/enhancement-closer-no-milestone.yml b/.github/workflows/enhancement-closer-no-milestone.yml index e707a361f..c9f74443e 100644 --- a/.github/workflows/enhancement-closer-no-milestone.yml +++ b/.github/workflows/enhancement-closer-no-milestone.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/enhancement-closer-triage.yml b/.github/workflows/enhancement-closer-triage.yml index 7a67a2650..3f3aabfd8 100644 --- a/.github/workflows/enhancement-closer-triage.yml +++ b/.github/workflows/enhancement-closer-triage.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/enhancement-reopener.yml b/.github/workflows/enhancement-reopener.yml index bad43b959..ad62afcae 100644 --- a/.github/workflows/enhancement-reopener.yml +++ b/.github/workflows/enhancement-reopener.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener diff --git a/.github/workflows/external-closer-debugger.yml b/.github/workflows/external-closer-debugger.yml index 93202af1f..77c184ed1 100644 --- a/.github/workflows/external-closer-debugger.yml +++ b/.github/workflows/external-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/feature-request-closer-no-milestone.yml b/.github/workflows/feature-request-closer-no-milestone.yml index 4d63f315a..8403d8266 100644 --- a/.github/workflows/feature-request-closer-no-milestone.yml +++ b/.github/workflows/feature-request-closer-no-milestone.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/feature-request-closer-triage.yml b/.github/workflows/feature-request-closer-triage.yml index 0fb573a47..d5f62a422 100644 --- a/.github/workflows/feature-request-closer-triage.yml +++ b/.github/workflows/feature-request-closer-triage.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/feature-request-debugger.yml b/.github/workflows/feature-request-debugger.yml index 0bce2b55e..7414cefc5 100644 --- a/.github/workflows/feature-request-debugger.yml +++ b/.github/workflows/feature-request-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment diff --git a/.github/workflows/feature-request-reopener.yml b/.github/workflows/feature-request-reopener.yml index c8a346b33..0f95f9740 100644 --- a/.github/workflows/feature-request-reopener.yml +++ b/.github/workflows/feature-request-reopener.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener diff --git a/.github/workflows/investigate-closer-debugger.yml b/.github/workflows/investigate-closer-debugger.yml index 5707f83be..f480bd953 100644 --- a/.github/workflows/investigate-closer-debugger.yml +++ b/.github/workflows/investigate-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/investigate-costing-closer-debugger.yml b/.github/workflows/investigate-costing-closer-debugger.yml index 7da091d8e..6931eca13 100644 --- a/.github/workflows/investigate-costing-closer-debugger.yml +++ b/.github/workflows/investigate-costing-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/job-compile-and-test.yml b/.github/workflows/job-compile-and-test.yml index 63e7b3b34..622c8b6e3 100644 --- a/.github/workflows/job-compile-and-test.yml +++ b/.github/workflows/job-compile-and-test.yml @@ -81,4 +81,4 @@ jobs: # uses: coactions/setup-xvfb@v1 # with: # run: yarn test --scenario=MultirootDeadlockTest - # working-directory: Extension \ No newline at end of file + # working-directory: Extension diff --git a/.github/workflows/locker.yml b/.github/workflows/locker.yml index 069f7bb4b..12e5a6967 100644 --- a/.github/workflows/locker.yml +++ b/.github/workflows/locker.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Locker diff --git a/.github/workflows/more-info-needed-closer-debugger.yml b/.github/workflows/more-info-needed-closer-debugger.yml index b1c723898..0bcec0c1e 100644 --- a/.github/workflows/more-info-needed-closer-debugger.yml +++ b/.github/workflows/more-info-needed-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/more-info-needed-closer.yml b/.github/workflows/more-info-needed-closer.yml index 10b84f7c4..301abfcba 100644 --- a/.github/workflows/more-info-needed-closer.yml +++ b/.github/workflows/more-info-needed-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/question-closer-debugger.yml b/.github/workflows/question-closer-debugger.yml index 6343f6a6f..0d8b72ed0 100644 --- a/.github/workflows/question-closer-debugger.yml +++ b/.github/workflows/question-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer diff --git a/.github/workflows/question-closer.yml b/.github/workflows/question-closer.yml index 8d7ab282f..66b36858a 100644 --- a/.github/workflows/question-closer.yml +++ b/.github/workflows/question-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer From 29ea7503ee986fa0f33a4dd0777acdf5b5a4729b Mon Sep 17 00:00:00 2001 From: Sean McManus Date: Tue, 17 Mar 2026 15:14:48 -0700 Subject: [PATCH 4/4] Update --- .github/workflows/bug-debugger.yml | 3 ++- .github/workflows/by-design-closer-debugger .yml | 3 ++- .github/workflows/by-design-closer.yml | 3 ++- .github/workflows/codeql.yml | 3 ++- .github/workflows/duplicate-closer.yml | 3 ++- .github/workflows/enhancement-closer-no-milestone.yml | 3 ++- .github/workflows/enhancement-closer-triage.yml | 3 ++- .github/workflows/enhancement-reopener.yml | 3 ++- .github/workflows/external-closer-debugger.yml | 3 ++- .github/workflows/feature-request-closer-no-milestone.yml | 3 ++- .github/workflows/feature-request-closer-triage.yml | 3 ++- .github/workflows/feature-request-debugger.yml | 3 ++- .github/workflows/feature-request-reopener.yml | 3 ++- .github/workflows/investigate-closer-debugger.yml | 3 ++- .github/workflows/investigate-costing-closer-debugger.yml | 3 ++- .github/workflows/job-compile-and-test.yml | 3 ++- .github/workflows/locker.yml | 3 ++- .github/workflows/more-info-needed-closer-debugger.yml | 3 ++- .github/workflows/more-info-needed-closer.yml | 3 ++- .github/workflows/question-closer-debugger.yml | 3 ++- .github/workflows/question-closer.yml | 3 ++- 21 files changed, 42 insertions(+), 21 deletions(-) diff --git a/.github/workflows/bug-debugger.yml b/.github/workflows/bug-debugger.yml index 2faffab5b..bcafecc0f 100644 --- a/.github/workflows/bug-debugger.yml +++ b/.github/workflows/bug-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment @@ -30,3 +30,4 @@ jobs: createdAfter: "2024-07-22" addComment: "Thank you for reporting this issue. We’ll let you know if we need more information to investigate it. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated." addLabels: help wanted + diff --git a/.github/workflows/by-design-closer-debugger .yml b/.github/workflows/by-design-closer-debugger .yml index 89a669b61..f03586b37 100644 --- a/.github/workflows/by-design-closer-debugger .yml +++ b/.github/workflows/by-design-closer-debugger .yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,3 +29,4 @@ jobs: ignoreLabels: Language Service,internal closeDays: 0 closeComment: "This issue has been closed because the described behavior was determined to be by design." + diff --git a/.github/workflows/by-design-closer.yml b/.github/workflows/by-design-closer.yml index fafe7a777..0fe17b3d3 100644 --- a/.github/workflows/by-design-closer.yml +++ b/.github/workflows/by-design-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -31,3 +31,4 @@ jobs: closeComment: "This issue has been closed because the described behavior was determined to be by design." pingDays: 80 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if it is no longer relevant." + diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 19feb94fd..cb836d8b9 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -59,7 +59,7 @@ jobs: # your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL @@ -94,3 +94,4 @@ jobs: uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" + diff --git a/.github/workflows/duplicate-closer.yml b/.github/workflows/duplicate-closer.yml index 63647dad9..29c41d85d 100644 --- a/.github/workflows/duplicate-closer.yml +++ b/.github/workflows/duplicate-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -31,3 +31,4 @@ jobs: closeComment: "This issue has been closed because it is a duplicate of another issue we are tracking." pingDays: 80 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if it is no longer relevant." + diff --git a/.github/workflows/enhancement-closer-no-milestone.yml b/.github/workflows/enhancement-closer-no-milestone.yml index c9f74443e..a24e19937 100644 --- a/.github/workflows/enhancement-closer-no-milestone.yml +++ b/.github/workflows/enhancement-closer-no-milestone.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -33,3 +33,4 @@ jobs: closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog." setMilestoneId: 30 ignoreMilestoneNames: "*" + diff --git a/.github/workflows/enhancement-closer-triage.yml b/.github/workflows/enhancement-closer-triage.yml index 3f3aabfd8..30d8230a9 100644 --- a/.github/workflows/enhancement-closer-triage.yml +++ b/.github/workflows/enhancement-closer-triage.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -33,3 +33,4 @@ jobs: closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog." milestoneName: Triage milestoneId: 30 + diff --git a/.github/workflows/enhancement-reopener.yml b/.github/workflows/enhancement-reopener.yml index ad62afcae..b10666057 100644 --- a/.github/workflows/enhancement-reopener.yml +++ b/.github/workflows/enhancement-reopener.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener @@ -34,3 +34,4 @@ jobs: milestoneName: Triage setMilestoneId: 28 removeLabels: more votes needed + diff --git a/.github/workflows/external-closer-debugger.yml b/.github/workflows/external-closer-debugger.yml index 77c184ed1..dc5f35fa1 100644 --- a/.github/workflows/external-closer-debugger.yml +++ b/.github/workflows/external-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,3 +29,4 @@ jobs: ignoreLabels: Language Service,internal closeDays: 0 closeComment: "This issue has been closed because it is external or not applicable to the extension." + diff --git a/.github/workflows/feature-request-closer-no-milestone.yml b/.github/workflows/feature-request-closer-no-milestone.yml index 8403d8266..5312c0756 100644 --- a/.github/workflows/feature-request-closer-no-milestone.yml +++ b/.github/workflows/feature-request-closer-no-milestone.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -33,3 +33,4 @@ jobs: closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog." setMilestoneId: 30 ignoreMilestoneNames: "*" + diff --git a/.github/workflows/feature-request-closer-triage.yml b/.github/workflows/feature-request-closer-triage.yml index d5f62a422..4ddab0ed6 100644 --- a/.github/workflows/feature-request-closer-triage.yml +++ b/.github/workflows/feature-request-closer-triage.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -33,3 +33,4 @@ jobs: closeComment: "This feature request is being closed due to insufficient upvotes. Please leave a 👍-upvote or 👎-downvote reaction on the issue to help us prioritize it. When enough upvotes are received, this issue will be eligible for our backlog." milestoneName: Triage milestoneId: 30 + diff --git a/.github/workflows/feature-request-debugger.yml b/.github/workflows/feature-request-debugger.yml index 7414cefc5..5202d0c53 100644 --- a/.github/workflows/feature-request-debugger.yml +++ b/.github/workflows/feature-request-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment @@ -30,3 +30,4 @@ jobs: createdAfter: "2024-07-22" addComment: "Thank you for your feature request. While we may not be able to implement it immediately, we will monitor community reactions to see how it fits into our backlog. Additionally, if you're working with GDB/LLDB, please note that the code is open source at https://github.com/microsoft/MIEngine/wiki/Contributing-Code . Your contributions are always welcome and appreciated." addLabels: help wanted + diff --git a/.github/workflows/feature-request-reopener.yml b/.github/workflows/feature-request-reopener.yml index 0f95f9740..a060e2d13 100644 --- a/.github/workflows/feature-request-reopener.yml +++ b/.github/workflows/feature-request-reopener.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener @@ -34,3 +34,4 @@ jobs: milestoneName: Triage setMilestoneId: 28 removeLabels: more votes needed + diff --git a/.github/workflows/investigate-closer-debugger.yml b/.github/workflows/investigate-closer-debugger.yml index f480bd953..d3b823ae9 100644 --- a/.github/workflows/investigate-closer-debugger.yml +++ b/.github/workflows/investigate-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,3 +29,4 @@ jobs: ignoreLabels: Language Service,internal closeDays: 180 closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue." + diff --git a/.github/workflows/investigate-costing-closer-debugger.yml b/.github/workflows/investigate-costing-closer-debugger.yml index 6931eca13..7b68f50f4 100644 --- a/.github/workflows/investigate-costing-closer-debugger.yml +++ b/.github/workflows/investigate-costing-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,3 +29,4 @@ jobs: ignoreLabels: Language Service,internal closeDays: 180 closeComment: "This issue has been closed as lower priority. We're sorry if this issue still impacts you but unfortunately we're not able to address this. We will accept a pull request from the community if it's applicable for this issue." + diff --git a/.github/workflows/job-compile-and-test.yml b/.github/workflows/job-compile-and-test.yml index 622c8b6e3..a9a1b8621 100644 --- a/.github/workflows/job-compile-and-test.yml +++ b/.github/workflows/job-compile-and-test.yml @@ -22,7 +22,7 @@ jobs: runs-on: ${{ inputs.runner-env }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Use Node.js 24 uses: actions/setup-node@v4 @@ -82,3 +82,4 @@ jobs: # with: # run: yarn test --scenario=MultirootDeadlockTest # working-directory: Extension + diff --git a/.github/workflows/locker.yml b/.github/workflows/locker.yml index 12e5a6967..79d843630 100644 --- a/.github/workflows/locker.yml +++ b/.github/workflows/locker.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Locker @@ -28,3 +28,4 @@ jobs: daysSinceClose: 45 daysSinceUpdate: 3 ignoreLabels: more votes needed,debugger,internal + diff --git a/.github/workflows/more-info-needed-closer-debugger.yml b/.github/workflows/more-info-needed-closer-debugger.yml index 0bcec0c1e..87ae5cd38 100644 --- a/.github/workflows/more-info-needed-closer-debugger.yml +++ b/.github/workflows/more-info-needed-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -32,3 +32,4 @@ jobs: closeComment: "This issue has been closed because it needs more information and has not had recent activity." pingDays: 7 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information." + diff --git a/.github/workflows/more-info-needed-closer.yml b/.github/workflows/more-info-needed-closer.yml index 301abfcba..1d2016775 100644 --- a/.github/workflows/more-info-needed-closer.yml +++ b/.github/workflows/more-info-needed-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -31,3 +31,4 @@ jobs: closeComment: "This issue has been closed because it needs more information and has not had recent activity." pingDays: 14 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the problem no longer exists, or adding more information." + diff --git a/.github/workflows/question-closer-debugger.yml b/.github/workflows/question-closer-debugger.yml index 0d8b72ed0..75616ceb3 100644 --- a/.github/workflows/question-closer-debugger.yml +++ b/.github/workflows/question-closer-debugger.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -32,3 +32,4 @@ jobs: closeComment: "This issue has been closed because it is a question and has not had recent activity." pingDays: 7 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the question has been answered." + diff --git a/.github/workflows/question-closer.yml b/.github/workflows/question-closer.yml index 66b36858a..ebcdb99be 100644 --- a/.github/workflows/question-closer.yml +++ b/.github/workflows/question-closer.yml @@ -18,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -31,3 +31,4 @@ jobs: closeComment: "This issue has been closed because it is a question and has not had recent activity." pingDays: 80 pingComment: "Hey @${assignee}, this issue might need further attention.\n\n@${author}, you can help us out by closing this issue if the question has been answered." +