summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-03-15 11:40:29 +0100
committerGitHub <noreply@github.com>2022-03-15 11:40:29 +0100
commit67a9da359e8617b86973274ff3e248eda7432819 (patch)
tree12b53715c7636527655527d27446b02e8aad30e2 /.github/workflows
parentab6961cbe7bd960976182e590e0253112b595d46 (diff)
parentca9ea2fefed9672dc18f93f485369fde184905a5 (diff)
Merge pull request #2665 from nextcloud/feat/workflow-auto-update-node.yml
Updating node.yml workflow from template
Diffstat (limited to '.github/workflows')
-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 eee1bb13..bb3bbf52 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -10,6 +10,7 @@ on:
push:
branches:
- main
+ - master
- stable*
jobs:
@@ -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 }}