diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e183d1f..0a69ead 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -8,7 +8,7 @@ on: jobs: delivery: - name: Node 14.x + name: Node 16.x runs-on: ubuntu-latest steps: @@ -22,10 +22,10 @@ jobs: git config --global user.name "GitHub Action" git config --global user.email "action@github.com" - - name: Set up Node.js version 14.x + - name: Set up Node.js version 16.x uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x registry-url: https://npm.pkg.github.com scope: trutoo diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de8ba23..1d50239 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - node: [12.x, 13.x, 14.x] + node: [14.x, 16.x, 17.x] steps: - name: Check out source code