From 5e3c69fb601256b5f2814f8ce3f1a660a062aef5 Mon Sep 17 00:00:00 2001 From: znat Date: Mon, 12 Sep 2022 15:08:59 +0200 Subject: [PATCH] Revert "ci: missing update to node 16+" This reverts commit b775964bc57eaf3ffef1ecdd6075efb6aac0ea3b. --- .github/workflows/documentation.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 3c37128bd88a..31b36d169d03 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -108,10 +108,10 @@ jobs: with: python-version: 3.9 - - name: Set up Node 16.x 🦙 + - name: Set up Node 12.x 🦙 uses: actions/setup-node@v3.4.1 with: - node-version: "16.x" + node-version: "12.x" - name: Read Poetry Version 🔢 run: | @@ -146,8 +146,8 @@ jobs: uses: actions/cache@v3 with: path: docs/node_modules - key: ${{ runner.os }}-yarn-16.x-${{ hashFiles('docs/yarn.lock') }} - restore-keys: ${{ runner.os }}-yarn-16.x + key: ${{ runner.os }}-yarn-12.x-${{ hashFiles('docs/yarn.lock') }} + restore-keys: ${{ runner.os }}-yarn-12.x - name: Install Dependencies 📦 run: make install install-docs @@ -199,11 +199,11 @@ jobs: with: python-version: 3.9 - - name: Set up Node 16.x 🦙 + - name: Set up Node 12.x 🦙 if: needs.changes.outputs.docs == 'true' uses: actions/setup-node@v3.4.1 with: - node-version: "16.x" + node-version: "12.x" - name: Read Poetry Version 🔢 if: needs.changes.outputs.docs == 'true' @@ -243,8 +243,8 @@ jobs: uses: actions/cache@v3 with: path: docs/node_modules - key: ${{ runner.os }}-yarn-16.x-${{ hashFiles('docs/yarn.lock') }} - restore-keys: ${{ runner.os }}-yarn-16.x + key: ${{ runner.os }}-yarn-12.x-${{ hashFiles('docs/yarn.lock') }} + restore-keys: ${{ runner.os }}-yarn-12.x - name: Install Dependencies 📦 if: needs.changes.outputs.docs == 'true' @@ -287,17 +287,17 @@ jobs: - name: Checkout git repository 🕝 uses: actions/checkout@v3 - - name: Set up Node 16.x 🦙 + - name: Set up Node 12.x 🦙 uses: actions/setup-node@v3.4.1 with: - node-version: "16.x" + node-version: "12.x" - name: Load Yarn Cached Packages ⬇ uses: actions/cache@v3 with: path: docs/node_modules - key: ${{ runner.os }}-yarn-16.x-${{ hashFiles('docs/yarn.lock') }} - restore-keys: ${{ runner.os }}-yarn-16.x + key: ${{ runner.os }}-yarn-12.x-${{ hashFiles('docs/yarn.lock') }} + restore-keys: ${{ runner.os }}-yarn-12.x - name: Install Dependencies 📦 run: make install-docs