diff options
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r-- | .github/workflows/build.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d97f15c..68be2c0 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,13 +24,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install pnpm uses: pnpm/action-setup@v4 with: version: 8 - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 20 cache: pnpm @@ -41,7 +41,7 @@ jobs: - name: Upload Artifacts if: ${{ github.ref == 'refs/heads/master' }} - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: # this should match the `pages` option in your adapter-static options path: 'app/build/' |