From b7b0660ef79ba2161c91422cbbfbca737f207091 Mon Sep 17 00:00:00 2001 From: okadurin Date: Thu, 18 Apr 2024 14:10:33 +0200 Subject: [PATCH] Revert "Update various github actions and node versions (#2251)" This reverts commit 3ce492942726f79c066fd8bda1555918a839cec6. --- .github/workflows/release.yml | 10 +++++----- .github/workflows/verify.yml | 36 +++++++++++++++++------------------ .nvmrc | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7393089bc1..7280e152f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,19 +14,19 @@ jobs: steps: - uses: google/wireit@setup-github-actions-caching/v1 - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v3 with: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - - name: Setup Node.js 18.x - uses: actions/setup-node@v4 + - name: Setup Node.js 16.x + uses: actions/setup-node@v3 with: - node-version: 18.x + node-version: 16.x registry-url: 'https://registry.npmjs.org' - name: Install Dependencies - run: npm ci + run: npm install --ci - name: Create Release Pull Request or Publish to npm id: changesets diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index d88227b64c..94bfa380bf 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -8,18 +8,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: google/wireit@setup-github-actions-caching/v1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Sanity check run: node ./scripts/lock-scan.js - - name: Setup Node 18.x - uses: actions/setup-node@v4 + - name: Setup Node 16.x + uses: actions/setup-node@v1 with: - node-version: 18.x + node-version: 16.x - name: Install Dependencies - run: npm ci + run: npm install --ci - name: Lint run: npm run lint @@ -32,15 +32,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: google/wireit@setup-github-actions-caching/v1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - - name: Setup Node 18.x - uses: actions/setup-node@v4 + - name: Setup Node 16.x + uses: actions/setup-node@v1 with: - node-version: 18.x + node-version: 16.x - name: Install Dependencies - run: npm ci + run: npm install --ci - uses: microsoft/playwright-github-action@v1 @@ -52,19 +52,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [18.x] + node-version: [16.x] os: [ubuntu-latest] steps: - uses: google/wireit@setup-github-actions-caching/v1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Setup Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies - run: npm ci + run: npm install --ci - name: Test run: npm run test:node @@ -75,19 +75,19 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [18.x] + node-version: [16.x] os: [windows-latest] steps: - uses: google/wireit@setup-github-actions-caching/v1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v2 - name: Setup Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies - run: npm ci + run: npm install --ci - name: Test run: npm run test:node diff --git a/.nvmrc b/.nvmrc index 3c032078a4..b6a7d89c68 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -18 +16