From be6382a392898fa833dcc138715db4acbeb3d955 Mon Sep 17 00:00:00 2001
From: Rishi556 <github@rishipanthee.com>
Date: Thu, 17 Oct 2024 08:17:36 -0500
Subject: [PATCH 1/2] Add node 20/22 to test matrix

---
 .github/workflows/main.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 551024e6..fa18e40f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -10,7 +10,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest]
-        node: [14, 16, 18]
+        node: [14, 16, 18, 20, 22]
     steps:
       - uses: actions/checkout@v1
       - uses: actions/setup-node@v1

From ae74ec671f4afa6fb9bdbdf9ac57eb9d47b6ab0b Mon Sep 17 00:00:00 2001
From: Rishi556 <github@rishipanthee.com>
Date: Thu, 17 Oct 2024 08:21:14 -0500
Subject: [PATCH 2/2] Update checkout/setup node to latest

---
 .github/workflows/main.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index fa18e40f..bb9d065d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -12,8 +12,8 @@ jobs:
         os: [ubuntu-latest]
         node: [14, 16, 18, 20, 22]
     steps:
-      - uses: actions/checkout@v1
-      - uses: actions/setup-node@v1
+      - uses: actions/checkout@v4
+      - uses: actions/setup-node@v4
         with:
           node-version: ${{ matrix.node }}
       - run: yarn install