From 1a7395dbe8e2de106847cd1f8a7c8e15cb28bada Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Tue, 14 Jun 2022 12:07:58 +0200 Subject: [PATCH 1/3] update package-lock for node 16.15.1 --- package-lock.json | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index f1c1012e40d..0438c7d83ab 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32074,12 +32074,6 @@ "react-dom": ">= 16.3.0" } }, - "node_modules/styled-components/node_modules/stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==", - "dev": true - }, "node_modules/styled-system": { "version": "5.1.5", "resolved": "https://registry.npmjs.org/styled-system/-/styled-system-5.1.5.tgz", @@ -32100,6 +32094,12 @@ "object-assign": "^4.1.1" } }, + "node_modules/stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==", + "dev": true + }, "node_modules/stylis-rule-sheet": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", @@ -59244,14 +59244,6 @@ "stylis": "^3.5.0", "stylis-rule-sheet": "^0.0.10", "supports-color": "^5.5.0" - }, - "dependencies": { - "stylis": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", - "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==", - "dev": true - } } }, "styled-system": { @@ -59274,6 +59266,12 @@ "object-assign": "^4.1.1" } }, + "stylis": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/stylis/-/stylis-3.5.4.tgz", + "integrity": "sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==", + "dev": true + }, "stylis-rule-sheet": { "version": "0.0.10", "resolved": "https://registry.npmjs.org/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz", From e79ad61686c80ae6c98621f58dc03da0ad4b30e6 Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Wed, 15 Jun 2022 17:24:14 +0200 Subject: [PATCH 2/3] use Node 14 for docs --- .github/workflows/deploy_preview.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index 055fed548f9..71b12de29a5 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -13,7 +13,7 @@ jobs: name: Preview uses: primer/.github/.github/workflows/deploy_preview.yml@main with: - node_version: 16 + node_version: 14 install: npm ci && cd docs && npm ci && cd .. build: npm run build:docs:preview output_dir: docs/public From eac0d37fcd4644058e7414b89f4ee5e6fc5087e6 Mon Sep 17 00:00:00 2001 From: Siddharth Kshetrapal Date: Wed, 15 Jun 2022 17:29:51 +0200 Subject: [PATCH 3/3] Use Node 14 for deploy production --- .github/workflows/deploy_production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_production.yml b/.github/workflows/deploy_production.yml index 0cd2201dd82..d2266bc8405 100644 --- a/.github/workflows/deploy_production.yml +++ b/.github/workflows/deploy_production.yml @@ -38,7 +38,7 @@ jobs: if: ${{ needs.guard.outputs.should_deploy == 'true' }} uses: primer/.github/.github/workflows/deploy.yml@main with: - node_version: 16 + node_version: 14 install: npm ci && cd docs && npm ci && cd .. build: npm run build:docs output_dir: docs/public