From 55491384bbf7a97d9b2213013c3d602520a562e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Fri, 12 Jul 2024 14:41:18 -0600 Subject: [PATCH] ci: Bump actions to use Node 20 (#1802) --- .github/workflows/lint_and_format.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint_and_format.yml b/.github/workflows/lint_and_format.yml index 21b975105..75d44f762 100644 --- a/.github/workflows/lint_and_format.yml +++ b/.github/workflows/lint_and_format.yml @@ -12,10 +12,10 @@ jobs: steps: - uses: actions/checkout@v4.1.7 - - name: Use Node.js v16 + - name: Use Node.js v20 uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x cache: "yarn" - run: yarn install --immutable - run: yarn lint:check @@ -26,10 +26,10 @@ jobs: steps: - uses: actions/checkout@v4.1.7 - - name: Use Node.js v16 + - name: Use Node.js v20 uses: actions/setup-node@v4 with: - node-version: 16.x + node-version: 20.x cache: "yarn" - run: yarn install --immutable - run: yarn format:check