From ceab87d29e0e5308cae7d07cd4e90185148e5880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Mon, 24 Apr 2023 16:40:21 +0200 Subject: [PATCH] feat(repo): use @pnpm/exe over pnpm for CI runs (#16495) --- .circleci/config.yml | 2 +- .github/workflows/e2e-matrix.yml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 8ffedfb4b0344..c2e5ce0855055 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,7 +74,7 @@ commands: steps: - run: name: Install PNPM - command: npm install --prefix=$HOME/.local -g pnpm@7.30.3 + command: npm install --prefix=$HOME/.local -g @pnpm/exe@8.3.1 setup: parameters: diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 290817f3db5f7..28a4141d161e8 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -321,9 +321,8 @@ jobs: - name: Install PNPM if: ${{ matrix.package_manager == 'pnpm' }} - uses: pnpm/action-setup@v2 - with: - version: 7.30.5 + run: | + npm install -g @pnpm/exe@8.3.1 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v3