From 908ff4b40a4d88b52a18039981ebe4a62c5b6ea0 Mon Sep 17 00:00:00 2001 From: Todd Dukart <786421+tdukart@users.noreply.github.com> Date: Wed, 5 Nov 2025 15:21:44 -0500 Subject: [PATCH] Update Node to 24 on linter --- .github/workflows/lint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 9d5707d..54a76e0 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,12 +16,12 @@ jobs: strategy: matrix: - node-version: [10.x] + node-version: [24.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm ci