From 335f6a79cb88544723123d216e9484591ab7269a Mon Sep 17 00:00:00 2001 From: Greg Soltis Date: Fri, 27 May 2022 10:47:07 -0700 Subject: [PATCH] Comment out bumped pnpm setup action, use manual npm install of pnpm instead until the pnpm action gets fixed --- .github/workflows/ci-go.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index e211ea12bfe02..e400429f9f178 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -27,9 +27,19 @@ jobs: go-version: 1.18.0 id: go - - uses: pnpm/action-setup@v2.2.1 + # Can re-enable when https://github.com/pnpm/action-setup/issues/44 is fixed + # - uses: pnpm/action-setup@v2.2.1 + # with: + # version: 6.32.11 + + - name: Setup Node.js environment + uses: actions/setup-node@v3 with: - version: 6.32.11 + node-version: 16 + # cache: pnpm + + - name: Install pnpm + run: npm install -g pnpm@6.32.11 - name: Setup Node.js environment uses: actions/setup-node@v3 @@ -131,15 +141,18 @@ jobs: go-version: 1.18.0 id: go - - uses: pnpm/action-setup@v2.1.0 - with: - version: 6.32.11 + # - uses: pnpm/action-setup@v2.1.0 + # with: + # version: 6.32.11 - name: Setup Node.js environment uses: actions/setup-node@v3 with: node-version: 16 - cache: pnpm + # cache: pnpm + + - name: Install pnpm + run: npm install -g pnpm@6.32.11 - name: Check ${{matrix.example}} example with ${{ matrix.manager }} shell: bash