From 7cfb4506d0dc5999c8bd9e6e7d167ca8cb7bb4f2 Mon Sep 17 00:00:00 2001 From: Justin Coyne <jcoyne@justincoyne.com> Date: Tue, 24 Jan 2023 08:00:46 -0600 Subject: [PATCH] Upgrade github actions The old actions are giving deprecation warnings: > Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-node@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 8fb97ada..99901138 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -17,9 +17,9 @@ jobs: node-version: [14.x, 16.x, 18.x, 19.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm install -g codecov -- GitLab