Skip to content

Commit 4b49f87

Browse files
committed
🩹 fix deprecation warning:
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/setup-node@v2 Using version v2.285.0, latest or master: actions/setup-node/pull/414
1 parent c0c3c5a commit 4b49f87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

‎.github/workflows/run.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
run:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/setup-node@v1
12+
- uses: actions/setup-node@master
1313
with:
14-
node-version: 12
14+
node-version: 16
1515
- run: npx github-stats-box
1616
env:
1717
GH_TOKEN: ${{ secrets.GH_TOKEN }} # Do not edit, defined in secrets
1818

1919
# Edit the following environment variables
20-
GIST_ID: d6d145b057ccda9abd1e36a581f2c096 # The ID portion from your gist url
20+
GIST_ID: 1cc900d92b9acc15786d7553b46a2cdf # The ID portion from your gist url
2121
ALL_COMMITS: true # If `true` it will count all commits, if `false` it will count your last year commits
22-
K_FORMAT: true # If `true`, large numbers will be formatted with a "k", for example "1.5k"
22+
K_FORMAT: false # If `true`, large numbers will be formatted with a "k", for example "1.5k"

0 commit comments

Comments
 (0)