From 3201c2b61619c1d166586895de41b16db487801a 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 | 4 ++-- .github/workflows/schedule.yml | 6 +++--- action.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a251ba374..dec741e87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,9 +12,9 @@ jobs: matrix: node_version: [14] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@master - name: Use Node.js ${{ matrix.node_version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@master with: node-version: ${{ matrix.node_version }} - name: build diff --git a/.github/workflows/schedule.yml b/.github/workflows/schedule.yml index d083b46fd..555d488b2 100644 --- a/.github/workflows/schedule.yml +++ b/.github/workflows/schedule.yml @@ -10,10 +10,10 @@ jobs: update-gist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - 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 diff --git a/action.yml b/action.yml index ffdb519be..bfdf6dc6e 100644 --- a/action.yml +++ b/action.yml @@ -5,5 +5,5 @@ branding: icon: "activity" color: "blue" runs: - using: "node12" + using: "node16" main: "dist/index.js"