From 33b9d377550fc1ec86f5509399fe41fd0a23a3d4 Mon Sep 17 00:00:00 2001 From: Tony Drake Date: Sun, 27 Apr 2025 16:05:03 -0400 Subject: [PATCH] Update CI configuration The Github CI workflow is a bit out of date. - Update the cache action to v4. - Use the latest LTS of Node. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 997a296..97c1fa1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: '12' - - uses: actions/cache@v2 + node-version: '22' + - uses: actions/cache@v4 with: path: node_modules key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} @@ -18,4 +18,4 @@ jobs: - name: Lint run: yarn lint - name: Test - run: yarn test \ No newline at end of file + run: yarn test