From 5b904e64cb5828f99a597284a4dd6819376c9923 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Sun, 7 Jun 2026 14:16:07 -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 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a2649f6..d972986 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,13 +13,14 @@ jobs: - 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