From 093505abc7fd8e7edfc23ba1b2a9180fa28d45d3 Mon Sep 17 00:00:00 2001 From: Thomas Merz Date: Tue, 13 Dec 2022 19:15:31 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Issue=2074:=20fix=20deprecation?= =?UTF-8?q?=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 Please update the following actions to use Node.js 16: maxam2017/productive-box@master --- .github/workflows/build.yml | 6 ++++++ .github/workflows/schedule.yml | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cd324a6b7..ac9fa3c60 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,9 +12,15 @@ jobs: matrix: node_version: [16] steps: +<<<<<<< HEAD - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v3 +======= + - uses: actions/checkout@master + - name: Use Node.js ${{ matrix.node_version }} + uses: actions/setup-node@master +>>>>>>> 3201c2b (🩹 Issue 74: fix deprecation warning:) with: node-version: ${{ matrix.node_version }} - name: build diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index 70f691df0..555d488b2 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -10,9 +10,10 @@ jobs: update-gist: runs-on: ubuntu-latest steps: + - uses: actions/checkout@master - name: Update gist uses: maxam2017/productive-box@master env: GH_TOKEN: ${{ secrets.GH_TOKEN }} - GIST_ID: 3b6ecf2621f492632018912a61025276 - TIMEZONE: Europe/Berlin + GIST_ID: 9842e074b8ee46aef76fd0d493bae0ed + TIMEZONE: Asia/Taipei