From 9c7db3eb767fe28a0c9ee3951469c457ea57e1f0 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Sun, 7 Jun 2026 14:13:23 -0700 Subject: [PATCH] chore: update GitHub Actions No change to logic. This updates GitHub Actions to their latest versions. This also ensures we are testing up through Node v26. --- .github/workflows/main.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 194a18c..a9f2ddb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,13 +13,15 @@ jobs: - 18 - 20 - 22 + - 24 + - 26 os: - ubuntu-latest - macos-latest - windows-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm install