Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Setup Bun
uses: ./.github/actions/setup-bun
Expand All @@ -30,7 +30,7 @@ jobs:

- name: Upload Artifact
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: './dist'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/performance-monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Bun
uses: ./.github/actions/setup-bun
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
cat performance-report.txt

- name: Upload report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: performance-report
path: performance-report.txt
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Create Issue
if: steps.check.outputs.build-slow == 'true' || steps.check.outputs.bundle-large == 'true'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const fs = require('fs');
Expand Down