From 3ad11df6040d79c9a920c950670ddb085b605a0b Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Wed, 31 Jul 2024 22:18:08 -0400 Subject: [PATCH 1/4] Bump actions/checkout@v3 to v4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 358d886..1fb6b34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup node v${{ matrix.node-version }} uses: actions/setup-node@v3 From d6bb15ad593994b4cf358fde5bc0889676310ad4 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Wed, 31 Jul 2024 22:19:12 -0400 Subject: [PATCH 2/4] Bump actions/setup-node@v3 to v4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fb6b34..97be88b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Setup node v${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} From 0595d12255a2563984de7b482e08c3627bb43d32 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Wed, 31 Jul 2024 22:21:23 -0400 Subject: [PATCH 3/4] Bump actions/upload-artifact@v3 to v4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 97be88b..751e5fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,7 @@ jobs: run: npm pack - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: kj4ezj-is-${{ matrix.node-version }} path: kj4ezj-is-*.tgz From 40c9ba92d4d8f9a6e0f6362ffe2ccd3e882228a3 Mon Sep 17 00:00:00 2001 From: Zach Butler Date: Wed, 31 Jul 2024 22:22:46 -0400 Subject: [PATCH 4/4] Add node 20 "Iron" to CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 751e5fb..fc7bc49 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [14, 16, 18] + node-version: [14, 16, 18, 20] name: is.js - nodeJS v${{ matrix.node-version }}