From cebc5deed6ba3537ba58f95b2fbbca757ab3c6fe Mon Sep 17 00:00:00 2001 From: Emil Gulamov <125820963+mearashadowfax@users.noreply.github.com> Date: Tue, 19 Mar 2024 17:33:39 +0400 Subject: [PATCH] Update PNPM version in GitHub Actions workflow Modified the GitHub Actions workflow to use a specific version of PNPM. This can ensure a consistent environment for the setup and execution of necessary tools and --- .github/actions/install/action.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/install/action.yml b/.github/actions/install/action.yml index b044f30..6d3ab5b 100644 --- a/.github/actions/install/action.yml +++ b/.github/actions/install/action.yml @@ -6,6 +6,8 @@ runs: steps: - name: Setup PNPM uses: pnpm/action-setup@v3 + with: + version: 8.15.5 - name: Setup Node uses: actions/setup-node@v4