From 84139674558c845543197528a170b964fc6df218 Mon Sep 17 00:00:00 2001 From: Zachary Belford Date: Tue, 9 Apr 2024 16:09:03 -0700 Subject: [PATCH] fix: bump ci node versions --- .circleci/config.yml | 2 +- .github/workflows/lint.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8371ea..fb2b0a0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ aliases: defaults: &defaults working_directory: ~/project docker: - - image: cimg/node:18.14.2 + - image: cimg/node:20.12.1 jobs: test: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d5059c9..b866dda 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Use Node.js 16.17.0 + - name: Use Node.js 20.12.1 uses: actions/setup-node@v1 with: - node-version: 16.17.0 + node-version: 20.12.1 - name: npm install run: npm install - name: lint