From 36ec0813dcb41138ee5f7ec53c9ab28cb080138c Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Tue, 13 Dec 2022 18:26:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20fix=20deprecation=20warning:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node.js 12 actions are deprecated. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Please update the following actions to use Node.js 16: actions/checkout@v2 Using version v3, latest or master: actions/checkout#689 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31079ce..dedbecb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@master - name: Use Node.js 12 - uses: actions/setup-node@v1 + uses: actions/setup-node@master with: node-version: '12.x' - run: npm ci