From e6993752f3210465ca354021fedf63779623767d Mon Sep 17 00:00:00 2001 From: Ludovico Fischer Date: Sun, 29 May 2022 00:50:01 +0200 Subject: [PATCH] chore: update GitHug action versions Unblock the pipeline by updating the @pnpm/action-setup --- .github/workflows/test.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7269ed76f..1e83ed221 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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: @@ -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 @@ -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 }}