Apply suggestions from code review

Co-authored-by: Karol Wypchło <kwypchlo@gmail.com>
This commit is contained in:
Matthew Sevey 2022-04-06 15:09:36 -04:00 committed by GitHub
parent 747a1918e0
commit 075c8eac40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -11,7 +11,7 @@ inputs:
runs: runs:
using: "composite" using: "composite"
steps: steps:
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
with: with:
node-version: 16.x node-version: 16.x
- run: | - run: |

View File

@ -56,7 +56,7 @@ jobs:
matrix: matrix:
working-directory: ${{ fromJSON(needs.js-changes.outputs.packages) }} working-directory: ${{ fromJSON(needs.js-changes.outputs.packages) }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Run JS-Lint Action - name: Run JS-Lint Action
uses: ./.github/actions/js-lint uses: ./.github/actions/js-lint
with: with:
@ -73,7 +73,7 @@ jobs:
dockerfile: ${{ fromJSON(needs.dockerfile-changes.outputs.packages) }} dockerfile: ${{ fromJSON(needs.dockerfile-changes.outputs.packages) }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: hadolint/hadolint-action@v2.0.0 - uses: hadolint/hadolint-action@v2.1.0
with: with:
dockerfile: ${{ matrix.dockerfile }} dockerfile: ${{ matrix.dockerfile }}
@ -98,7 +98,7 @@ jobs:
needs: python-changes needs: python-changes
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Run Black python linter - name: Run Black python linter
if: ${{ needs.python-changes.outputs.updates }} if: ${{ needs.python-changes.outputs.updates }}
uses: ./.github/actions/python-black-lint uses: ./.github/actions/python-black-lint