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

Commit

Permalink
Merge pull request #4 from honeypotio/fix/deprecated-github-action
Browse files Browse the repository at this point in the history
fix: replace deprecated GitHub action
  • Loading branch information
martingregoire authored Mar 15, 2023
2 parents 3ba9a0d + c057c3a commit 5f2b34f
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 5f2b34f

Please sign in to comment.