Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
fix: replace deprecated GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
martingregoire committed Mar 15, 2023
1 parent 3ba9a0d commit c057c3a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: c-hive/gha-yarn-cache@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'

- name: Install dependencies
run: yarn install
Expand All @@ -24,7 +28,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: c-hive/gha-yarn-cache@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'

- name: Install dependencies
run: yarn install
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: c-hive/gha-yarn-cache@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'

- name: Install dependencies
run: yarn install
Expand Down

0 comments on commit c057c3a

Please sign in to comment.