Skip to content

Commit

Permalink
chore: try downgrade GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiosuramin committed Apr 27, 2024
1 parent 5235ced commit 9d32c73
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,15 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '19.8.1'

- name: use cache
uses: actions/cache@v3
with:
path: |
node_modules
key: 19.8.1-node_modules-${{ hashFiles('package-lock.json') }}
restore-keys: 19.8.1-node_modules- # Take any latest cache if failed to find it for current lock

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 9d32c73

Please sign in to comment.