Skip to content

MOVE-3939 update actions/checkout #256

MOVE-3939 update actions/checkout

MOVE-3939 update actions/checkout #256

name: Syntax check workflows files (actionlint)
on: [push]
jobs:
actionlint:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Download actionlint
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color -ignore 'unexpected key "outputs" for "workflow_call" section.'
shell: bash