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/check.yml | |
| parent | 5d403b86833c23ff7974daa829a9cbb2f837f4ec (diff) | |
| download | DropOut-9479c1663a418973a9555d83d2bda96dc666d919.tar.gz DropOut-9479c1663a418973a9555d83d2bda96dc666d919.zip | |
chore(ci): bump versions of actions
Diffstat (limited to '.github/workflows/check.yml')
| -rw-r--r-- | .github/workflows/check.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index ba8ce54..773cc21 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -17,15 +17,16 @@ jobs: contents: read runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - + - name: Checkout + uses: actions/checkout@v6 + - name: Install pnpm uses: pnpm/action-setup@v4 with: - version: 9 + version: latest - name: Install Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: 22 cache: "pnpm" @@ -42,4 +43,3 @@ jobs: - run: pnpm format working-directory: ui - |