Skip to content

Commit

Permalink
ci(actions): upgrade to Node 16–compat actions
Browse files Browse the repository at this point in the history
* actions/checkout: v2 -> v3
* actions/setup-node: v2 -> v3
* actions/cache: v2 -> v3
  • Loading branch information
IepIweidieng committed Jul 13, 2023
1 parent 203ad63 commit 27c8af7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: main
- name: Use Node.js 18.x
uses: actions/setup-node@v2
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: 18
- name: Cache NPM dependencies
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.OS }}-npm-cache
Expand Down

0 comments on commit 27c8af7

Please sign in to comment.