diff --git a/.github/workflows/build-preview.yaml b/.github/workflows/build-preview.yaml index c8350cc9..e9315a94 100644 --- a/.github/workflows/build-preview.yaml +++ b/.github/workflows/build-preview.yaml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 462f3e4f..ede8f688 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -24,7 +24,7 @@ jobs: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 @@ -57,7 +57,7 @@ jobs: with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 22 - name: Get package version diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 641ac196..33040f24 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v5 with: fetch-depth: 0 # Fetch all history for git info - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: node-version: 22 - name: Install Dependencies @@ -29,7 +29,7 @@ jobs: - name: Build Quartz run: npx quartz build - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: public