Skip to content

Commit

Permalink
馃┕ Issue 74: fix deprecation warning:
Browse files Browse the repository at this point in the history
   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

.
  • Loading branch information
thomasmerz committed Dec 13, 2022
1 parent 9bc8823 commit a3ed09e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -12,7 +12,7 @@ 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
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/schedule.yml
Expand Up @@ -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
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -5,5 +5,5 @@ branding:
icon: "activity"
color: "blue"
runs:
using: "node12"
using: "node16"
main: "dist/index.js"

0 comments on commit a3ed09e

Please sign in to comment.