Skip to content

Commit

Permalink
build(ci): update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
duncanleo authored Sep 21, 2024
1 parent b3d0e01 commit 636a6ce
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 16
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 18.x
- run: yarn install
- run: yarn build
- run: mkdir output
Expand All @@ -25,7 +25,7 @@ jobs:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: output
Expand All @@ -34,7 +34,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload traces
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: traces
path: traces/*.json

0 comments on commit 636a6ce

Please sign in to comment.