From f8b62c6ccd6b83dfd97c046697a64533cc450679 Mon Sep 17 00:00:00 2001 From: Sergey Potekhin Date: Thu, 28 Nov 2024 23:22:30 +0400 Subject: [PATCH] Update install deps CI --- .github/actions/install-dependencies/action.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index db42697..7623195 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -4,11 +4,15 @@ description: "Prepare repository and all dependencies" runs: using: "composite" steps: - - name: Setup pnpm + - name: Install pnpm uses: pnpm/action-setup@v4 + with: + version: 9 + - name: Use Node.js + uses: actions/setup-node@v4 with: node-version: 20 - version: 9.14.2 + cache: 'pnpm' - name: Install dependencies shell: bash