From 89dcaaf2de6868cec44894d7e15dae40c43bdd42 Mon Sep 17 00:00:00 2001 From: rui Date: Mon, 21 Jun 2021 13:29:17 -0400 Subject: [PATCH 1/7] npm-publish: update to use the latest TLS v14 node v12 is in maintenance mode node v16 (next TLS) is not ready yet --- ci/npm-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/npm-publish.yml b/ci/npm-publish.yml index 8462902..025976d 100644 --- a/ci/npm-publish.yml +++ b/ci/npm-publish.yml @@ -14,7 +14,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 14 - run: npm ci - run: npm test @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 14 registry-url: https://registry.npmjs.org/ - run: npm ci - run: npm publish @@ -42,7 +42,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 14 registry-url: $registry-url(npm) - run: npm ci - run: npm publish From ba0243447c0c862c1e75245d03fa2f6b0a75c8a8 Mon Sep 17 00:00:00 2001 From: rui Date: Mon, 21 Jun 2021 13:32:13 -0400 Subject: [PATCH 2/7] pylint: use python 3.9 and setup-python@2 --- ci/pylint.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/pylint.yml b/ci/pylint.yml index c16ba22..0805af7 100644 --- a/ci/pylint.yml +++ b/ci/pylint.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v1 + - name: Set up Python 3.9 + uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.9 - name: Install dependencies run: | python -m pip install --upgrade pip From 9e53fa6505fd66012c775b564d5e1ec226863a5c Mon Sep 17 00:00:00 2001 From: Brian Cristante <33549821+brcrista@users.noreply.github.com> Date: Wed, 23 Jun 2021 14:43:36 -0400 Subject: [PATCH 3/7] action -> workflow --- ci/blank.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/blank.yml b/ci/blank.yml index 3214287..895e5d1 100644 --- a/ci/blank.yml +++ b/ci/blank.yml @@ -2,7 +2,7 @@ name: CI -# Controls when the action will run. +# Controls when the workflow will run on: # Triggers the workflow on push or pull request events but only for the $default-branch branch push: From 2f86a8abbe1f5934105778258218f1dee8a9d002 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari <64764738+tiwarishub@users.noreply.github.com> Date: Thu, 24 Jun 2021 11:06:26 +0530 Subject: [PATCH 4/7] Update blank.properties.json --- ci/properties/blank.properties.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/properties/blank.properties.json b/ci/properties/blank.properties.json index d244772..35d77bc 100644 --- a/ci/properties/blank.properties.json +++ b/ci/properties/blank.properties.json @@ -1,6 +1,7 @@ { "name": "Simple workflow", "description": "Start with a file with the minimum necessary structure.", + "creator": "Github", "iconName": "blank", "categories": null } From acad7b662618966e7805c7ec0308901b1044f2f9 Mon Sep 17 00:00:00 2001 From: Shubham Tiwari <64764738+tiwarishub@users.noreply.github.com> Date: Thu, 24 Jun 2021 21:40:31 +0530 Subject: [PATCH 5/7] Update ci/properties/blank.properties.json Co-authored-by: Andy McKay --- ci/properties/blank.properties.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/properties/blank.properties.json b/ci/properties/blank.properties.json index 35d77bc..610327f 100644 --- a/ci/properties/blank.properties.json +++ b/ci/properties/blank.properties.json @@ -1,7 +1,7 @@ { "name": "Simple workflow", "description": "Start with a file with the minimum necessary structure.", - "creator": "Github", + "creator": "GitHub", "iconName": "blank", "categories": null } From 1edda098150cf4876e9ebacc400dbf8e1122b035 Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Wed, 30 Jun 2021 18:44:10 +0300 Subject: [PATCH 6/7] Add cache usage to the node.js starter-workflow --- ci/node.js.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/node.js.yml b/ci/node.js.yml index 2f60984..89b24fe 100644 --- a/ci/node.js.yml +++ b/ci/node.js.yml @@ -1,4 +1,4 @@ -# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node +# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI @@ -25,6 +25,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} + cache: 'npm' - run: npm ci - run: npm run build --if-present - run: npm test From f6cef1d4ee78102ca76d6a82d329316be127edc7 Mon Sep 17 00:00:00 2001 From: Andy McKay Date: Fri, 16 Jul 2021 12:30:45 -0700 Subject: [PATCH 7/7] Update CODEOWNERS Move to a specific starter-workflow team. --- CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODEOWNERS b/CODEOWNERS index 3732a32..8866d17 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -1,3 +1,3 @@ -* @actions/actions-experience +* @actions/starter-workflows /code-scanning/ @actions/advanced-security-code-scanning