From 4f678583c60e9e37be00ee732c3a5a7a72951ec0 Mon Sep 17 00:00:00 2001 From: Jonas Rittershofer Date: Sun, 26 Jul 2020 20:27:30 +0200 Subject: [PATCH] Fix actions Signed-off-by: Jonas Rittershofer --- .github/workflows/lint.yml | 6 +++--- .github/workflows/node.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8d74b98..566be08 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 @@ -66,7 +66,7 @@ jobs: - name: Set up node ${{ matrix.node-versions }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-versions }} - name: Install dependencies run: npm ci @@ -88,7 +88,7 @@ jobs: - name: Set up node ${{ matrix.node-versions }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-versions }} - name: Install dependencies run: npm ci diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index d5c403d..f44150d 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -22,7 +22,7 @@ jobs: - name: Set up node ${{ matrix.node-versions }} uses: actions/setup-node@v1 with: - node-versions: ${{ matrix.node-versions }} + node-version: ${{ matrix.node-versions }} - name: Install dependencies & build run: |