Skip to content

Commit

Permalink
updates deprecated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ivoputzer committed Sep 16, 2024
1 parent 66350ea commit 6983364
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,28 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name != 'workflow_run' || github.event.workflow_run.event == 'push' && github.event.workflow_run.conclusion == 'success' }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
check-latest: true
node-version-file: .node-version
cache: npm
- run: npm ci
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
id: cache
with:
path: data
key: jsonl-data
- run: npm run sync-coinbase
- uses: actions/cache/save@v3
- uses: actions/cache/save@v4
with:
path: data
key: ${{ steps.cache.outputs.cache-primary-key }}
- run: npm run build-coinbase-intervals
- run: npm run build-coinbase
- run: npm run build-coinbase-history
- run: npm run build-sitemap
- uses: actions/configure-pages@v3
- uses: actions/configure-pages@v4
- uses: actions/upload-pages-artifact@v2
with:
path: 'www'
Expand Down

0 comments on commit 6983364

Please sign in to comment.