diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 517e326..f5ffbe8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,22 +15,23 @@ jobs: strategy: matrix: node-version: [20] - pnpm-version: [8.11] + pnpm-version: [9.6.0] + steps: - - name: Checkout Repo - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v4 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 submodules: true - name: Set up pnpm action ${{ matrix.pnpm-version }} - uses: pnpm/action-setup@v2 + uses: pnpm/action-setup@v4 with: version: ${{ matrix.pnpm-version }} - name: Set up Node ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: cache: 'pnpm' node-version: ${{ matrix.node-version }}