From 052eb14208d77ed4f592e6310a3f4461872c7ea4 Mon Sep 17 00:00:00 2001 From: Dennis Zoma Date: Tue, 18 Jun 2024 13:11:46 +0200 Subject: [PATCH] chore(ci): Update release workflow --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2d23c94..1d10ac6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,22 +15,22 @@ jobs: strategy: matrix: node-version: [20] - pnpm-version: [8.11] + pnpm-version: [9.4] steps: - name: Checkout Repo - uses: actions/checkout@v3 + 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 }}