diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ca456ee5e..0e23c1cbf 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,13 +28,13 @@ jobs: - name: Build run: npm run build - name: Archive artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist-${{ inputs.os }} path: dist - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: - name: npm-logs + name: npm-logs-${{ inputs.os }} path: ~/.npm/_logs diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e60c8bca3..af777f01c 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -22,7 +22,7 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d967d2f5f..b1d09df01 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,7 +24,7 @@ jobs: branch: gh-pages folder: docs/public - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 5efd5a996..23b031950 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,7 +18,7 @@ jobs: - name: Lint run: npm run lint - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 601738a27..aeee66c7e 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -19,14 +19,14 @@ jobs: with: node-version: '20' - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist-${{ inputs.os }} path: dist - name: Check Performance run: npm run perf:diff - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ffaa871a2..7b13b8fdf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: npx semantic-release --dry-run fi - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: name: npm-logs diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a7c7b7fa3..ca4939661 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,17 +34,17 @@ jobs: - name: Install dependencies run: npm ci - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist-${{ matrix.os }} path: dist - name: Run Test run: TZ=${{ matrix.timezone }} npm test - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: - name: npm-logs + name: test-npm-logs-${{ matrix.os }}-${{ matrix.timezone }}-${{ matrix.node-version }} path: ~/.npm/_logs demo: name: Demo Check @@ -59,15 +59,15 @@ jobs: with: node-version: 22 - name: Download artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist-ubuntu-latest path: dist - name: Run Demo Test run: npm run test:demo - name: Archive npm failure logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: failure() with: - name: npm-logs + name: demo-npm-logs path: ~/.npm/_logs