diff options
| author | 2026-01-18 15:20:59 +0800 | |
|---|---|---|
| committer | 2026-01-18 15:20:59 +0800 | |
| commit | 9479c1663a418973a9555d83d2bda96dc666d919 (patch) | |
| tree | 4359cb67496d7e3f34b69aa8d45ac45f622cb0a7 /.github/workflows/test.yml | |
| parent | 5d403b86833c23ff7974daa829a9cbb2f837f4ec (diff) | |
| download | DropOut-9479c1663a418973a9555d83d2bda96dc666d919.tar.gz DropOut-9479c1663a418973a9555d83d2bda96dc666d919.zip | |
chore(ci): bump versions of actions
Diffstat (limited to '.github/workflows/test.yml')
| -rw-r--r-- | .github/workflows/test.yml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8bf6d2f..8c7c50c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Test & Build +name: Unit Test on: push: @@ -40,7 +40,8 @@ jobs: name: "macOS" steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v6 - name: Install Dependencies (Ubuntu) if: runner.os == 'Linux' && !matrix.wayland @@ -67,15 +68,15 @@ jobs: - name: Install Node.js if: github.event_name == 'workflow_dispatch' - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22 - name: Install pnpm if: github.event_name == 'workflow_dispatch' - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: - version: 9 + version: latest - name: Install Frontend Dependencies if: github.event_name == 'workflow_dispatch' @@ -111,7 +112,7 @@ jobs: - name: Upload Artifact (Linux) if: runner.os == 'Linux' && github.event_name == 'workflow_dispatch' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dropout-linux-${{ matrix.wayland && 'arch' || 'ubuntu' }}-${{ steps.slug.outputs.sha8 }} path: | @@ -122,7 +123,7 @@ jobs: - name: Upload Artifact (Windows) if: runner.os == 'Windows' && github.event_name == 'workflow_dispatch' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dropout-windows-${{ steps.slug.outputs.sha8 }} path: | @@ -133,7 +134,7 @@ jobs: - name: Upload Artifact (macOS) if: runner.os == 'macOS' && github.event_name == 'workflow_dispatch' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: dropout-macos-${{ steps.slug.outputs.sha8 }} path: | |