From c3db6d9dce2b20971a2981f7639676c8a6f5c7f4 Mon Sep 17 00:00:00 2001 From: KianNH Date: Fri, 9 Dec 2022 18:12:08 +0000 Subject: [PATCH] chore(ci): bump node versions in actions --- .github/workflows/lint.yml | 8 ++++---- .github/workflows/test.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 368786e..4fd5f08 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -4,24 +4,24 @@ on: [push, pull_request] jobs: markdown: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: '12.x' + node-version: '16.x' - run: npm install -g markdownlint-cli@0.27.1 - run: npm run lint:markdown prettier: - runs-on: ubuntu-18.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: Use Node.js uses: actions/setup-node@v2 with: - node-version: '12.x' + node-version: '16.x' - name: Restore NPM cache uses: actions/cache@v2 continue-on-error: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5cde7e3..9762d58 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x, 16.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v2