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 23, 2022
1 parent 866e204 commit 093505a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/schedule.yml
Expand Up @@ -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

0 comments on commit 093505a

Please sign in to comment.