Skip to content

Commit

Permalink
chore: update GitHub action versions (#1405)
Browse files Browse the repository at this point in the history
Unblock the pipeline by updating the @pnpm/action-setup
  • Loading branch information
ludofischer committed May 29, 2022
1 parent d88d0f2 commit 0d62a4c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Expand Up @@ -12,11 +12,11 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v3.0.2
- name: Install pnpm
uses: pnpm/action-setup@v2.2.1
uses: pnpm/action-setup@v2.2.2
with:
version: 6.32.2
version: 6.32.18
- name: Install Node.js 16.x
uses: actions/setup-node@v3.1.1
with:
Expand All @@ -32,11 +32,11 @@ jobs:
test_helpers:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v3.0.2
- name: Install pnpm
uses: pnpm/action-setup@v2.2.1
uses: pnpm/action-setup@v2.2.2
with:
version: 6.32.2
version: 6.32.18
- name: Install Node.js 16.x
uses: actions/setup-node@v3.1.1
with:
Expand All @@ -62,13 +62,13 @@ jobs:
if: matrix.os == 'windows-latest'
run: git config --global core.autocrlf input

- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v3.0.2

- name: Install pnpm
uses: pnpm/action-setup@v2.2.1
uses: pnpm/action-setup@v2.2.2
if: matrix.node-version != '10'
with:
version: 6.32.2
version: 6.32.18

- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.1.1
Expand All @@ -78,14 +78,14 @@ jobs:
cache: 'pnpm'

- name: Install old pnpm
uses: pnpm/action-setup@v2.2.1
uses: pnpm/action-setup@v2.2.2
if: matrix.node-version == '10'
with:
version: 5.18.4

# No cache support on GH actions for old pnpm
- name: Install Node.js without cache ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3.1.1
if: matrix.node-version == '10'
with:
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit 0d62a4c

Please sign in to comment.