Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-03-07 10:30:18 +0300
committerGitHub <noreply@github.com>2022-03-07 10:30:18 +0300
commitb88f910147b1b0fabcdfc42db3147dcbcea6bee8 (patch)
tree7ba6a7bddcd4313ab1ae7f08b5a45eb8d2807bec
parent1ad2f3b0f8ddf90af5da7a486c19cbba5084fdde (diff)
parentd5da4ea963313778511786f21668488e2d7abfeb (diff)
Merge pull request #400 from nextcloud/feat/workflow-auto-update-node.yml
Updating node.yml workflow from template
-rw-r--r--.github/workflows/node.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index 4b20eb5..bb3bbf5 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -9,6 +9,7 @@ on:
pull_request:
push:
branches:
+ - main
- master
- stable*
@@ -19,17 +20,17 @@ jobs:
name: node
steps:
- name: Checkout
- uses: actions/checkout@v2
+ uses: actions/checkout@v3
- name: Read package.json node and npm engines version
- uses: skjnldsv/read-package-engines-version-actions@v1.1
+ uses: skjnldsv/read-package-engines-version-actions@v1.2
id: versions
with:
fallbackNode: '^12'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
- uses: actions/setup-node@v2
+ uses: actions/setup-node@v3
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}