Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
ci: update actions (#137)
Browse files Browse the repository at this point in the history
This change aims to fix the following 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/checkout, actions/setup-node, actions/setup-node, actions/checkout
```

See https://github.com/prettier/stylelint-config-prettier/actions/runs/3423941045
  • Loading branch information
ybiquitous authored Dec 23, 2022
1 parent bbbd534 commit b091e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- 12
- 11
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down

0 comments on commit b091e98

Please sign in to comment.