summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-27 10:06:13 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-27 10:06:13 +0200
commitd66fc3e17cc299d7ff51b2f5af84595961ee718b (patch)
tree3215a9e624b0ccdb6ae7a4d0344ebeca73a0ed48 /.github
parente38f0a8c214d1b4674aca41d106ef91d6c3565f6 (diff)
Fix github actions checkout
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint.yml18
-rw-r--r--.github/workflows/node.yml8
2 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 8d74b98f..0290f720 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -38,7 +38,7 @@ jobs:
name: cs php${{ matrix.php-versions }}
steps:
- name: Checkout
- uses: actions/checkout@master
+ uses: actions/checkout@v2
- name: Set up php
uses: shivammathur/setup-php@master
@@ -57,16 +57,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: eslint node${{ matrix.node-versions }}
+ name: eslint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
@@ -79,16 +79,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: stylelint node${{ matrix.node-versions }}
+ name: stylelint node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml
index d5c403df..a971a7e6 100644
--- a/.github/workflows/node.yml
+++ b/.github/workflows/node.yml
@@ -13,16 +13,16 @@ jobs:
strategy:
matrix:
- node-versions: [12.x]
+ node-version: [12.x]
- name: node${{ matrix.node-versions }}
+ name: node${{ matrix.node-version }}
steps:
- uses: actions/checkout@v2
- - name: Set up node ${{ matrix.node-versions }}
+ - name: Set up node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
- node-versions: ${{ matrix.node-versions }}
+ node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: |