diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6ecdc46..5237e3e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,14 +33,14 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 # Not needed if lastUpdated is not enabled - - uses: pnpm/action-setup@v4 # Uncomment this if you're using pnpm + - uses: pnpm/action-setup@v5 # Uncomment this if you're using pnpm - name: Setup Node uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 - name: Setup Pages uses: actions/configure-pages@v5 - name: Install dependencies diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index c97c4d7..5cb8a42 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -28,14 +28,14 @@ jobs: uses: actions/checkout@v6 with: fetch-depth: 0 # Not needed if lastUpdated is not enabled - - uses: pnpm/action-setup@v4 # Uncomment this if you're using pnpm + - uses: pnpm/action-setup@v5 # Uncomment this if you're using pnpm - name: Setup Node uses: actions/setup-node@v6 with: node-version: 20 cache: pnpm - name: Setup pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 - name: Install dependencies run: pnpm install - name: Build with VitePress