diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e539188a..38ed5359 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,17 +19,17 @@ jobs: pull-requests: write steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v3 with: version: 8 run_install: false @@ -39,7 +39,7 @@ jobs: run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Use pnpm store - uses: actions/cache@v3 + uses: actions/cache@v4 id: pnpm-cache with: path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5517f6f1..2a2e9aed 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,17 +14,17 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 18 - name: Setup pnpm - uses: pnpm/action-setup@v2.2.4 + uses: pnpm/action-setup@v3 with: version: 8 run_install: false @@ -34,7 +34,7 @@ jobs: run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT - name: Use pnpm store - uses: actions/cache@v3 + uses: actions/cache@v4 id: pnpm-cache with: path: ${{ steps.pnpm-store.outputs.pnpm_cache_dir }}