Skip to content

Commit

Permalink
chore(ci): update github action to not use deprecated ones
Browse files Browse the repository at this point in the history
  • Loading branch information
simrobin committed Oct 17, 2022
1 parent a60930d commit 3148f75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
continuous_integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}

- name: npm 8
run: npm i -g npm@8 --registry=https://registry.npmjs.org

- name: Get npm cache directory
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
Expand Down

0 comments on commit 3148f75

Please sign in to comment.