ci: pin down flake8, because 7.0.0 it conflicts with old ansible #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Lint workflows | |
"on": | |
push: | |
paths: | |
- ".github/**" | |
jobs: | |
workflow-linting: | |
name: Workflow Linting | |
runs-on: ubuntu-20.04 | |
container: | |
image: rhysd/actionlint:1.6.15 | |
options: --user=0 --entrypoint=/bin/sh | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: actionlint | |
run: /usr/local/bin/actionlint .github/workflows/* |