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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-04-26 18:38:16 +0300
committerGitHub <noreply@github.com>2022-04-26 18:38:16 +0300
commitb72c619d4baa7ef6248289426e88e4a148823271 (patch)
treecd2fbf9d6bc723919da366f962b9ff3bae3cb7f0 /.github
parent036f871d01ed6903467861b0fa2b18d5f5ae4a0c (diff)
parent1f961e33b0a93e3ab20d758b4802ed06b38a5a25 (diff)
Merge pull request #31467 from nextcloud/feat/workflow-auto-update-node.yml
Diffstat (limited to '.github')
-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 4b20eb5ed02..bb3bbf5209b 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 }}