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' diff --git a/.github/workflows/bug-debugger.yml b/.github/workflows/bug-debugger.yml index 2ac8f2f53..bcafecc0f 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment @@ -27,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 3d390c3d4..f03586b37 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -26,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 719478e53..0fe17b3d3 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -28,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/ci_linux.yml b/.github/workflows/ci_linux.yml index 85847d1fc..6b1c3f63e 100644 --- a/.github/workflows/ci_linux.yml +++ b/.github/workflows/ci_linux.yml @@ -6,9 +6,12 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + 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 7dfe198dd..1ecbcd5b0 100644 --- a/.github/workflows/ci_mac.yml +++ b/.github/workflows/ci_mac.yml @@ -6,10 +6,13 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + 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 9bdfea1d1..bcf98b07c 100644 --- a/.github/workflows/ci_windows.yml +++ b/.github/workflows/ci_windows.yml @@ -6,9 +6,12 @@ on: pull_request: branches: [ main ] +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + 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/codeql.yml b/.github/workflows/codeql.yml index 3332d12a2..cb836d8b9 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 }}) @@ -56,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 @@ -91,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 736bab5ab..29c41d85d 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -28,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 736e91e04..a24e19937 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -30,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 543bb972f..30d8230a9 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -30,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 df3d486f6..b10666057 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener @@ -31,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 e2181415d..dc5f35fa1 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -26,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 f314c89ff..5312c0756 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -30,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 f1bd800ec..4ddab0ed6 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -30,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 1da2d3e6c..5202d0c53 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Add Comment @@ -27,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 a47392801..a060e2d13 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Reopener @@ -31,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 f709ba8f5..d3b823ae9 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -26,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 142f58703..7b68f50f4 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -26,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 2468e22a8..a9a1b8621 100644 --- a/.github/workflows/job-compile-and-test.yml +++ b/.github/workflows/job-compile-and-test.yml @@ -14,17 +14,20 @@ on: yarn-args: type: string +env: + FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true + jobs: build: runs-on: ${{ inputs.runner-env }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - 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 }} @@ -78,4 +81,5 @@ 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 e965d2fdd..79d843630 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Run Locker @@ -25,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 52c3dc12f..87ae5cd38 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,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 b02f83bab..1d2016775 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -28,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 32e48268c..75616ceb3 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -29,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 a01c4d74b..ebcdb99be 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 @@ -15,7 +18,7 @@ jobs: issues: write steps: - name: Checkout Actions - uses: actions/checkout@v2 + uses: actions/checkout@v5 - name: Install Actions run: cd ./.github/actions && npm install --production && cd ../.. - name: Stale Closer @@ -28,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." +