summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2022-03-05 20:19:30 +0100
committerGitHub <noreply@github.com>2022-03-05 20:19:30 +0100
commitd12fc84959ae21a0202517cf270d16fac89ad6aa (patch)
tree7a314b7841abf9a1dd5f70f478382818f2b2dc31 /.github
parent3282cf02fa3407d39b0ed1f83dc14ae3265ed6a9 (diff)
parent60f74a96110343c3d5735516cb43f09902822efa (diff)
Merge pull request #6967 from nextcloud/feat/workflow-auto-update-lint-eslint.yml
Updating lint-eslint.yml workflow from template
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint-eslint.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/lint-eslint.yml b/.github/workflows/lint-eslint.yml
index 11590ffb0..5f48fb58b 100644
--- a/.github/workflows/lint-eslint.yml
+++ b/.github/workflows/lint-eslint.yml
@@ -9,6 +9,7 @@ on:
pull_request:
push:
branches:
+ - main
- master
- stable*
@@ -20,17 +21,17 @@ jobs:
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 }}