Skip to content

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group across 1 directory #144

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group across 1 directory

Bump actions/setup-python from 6.2.0 to 6.3.0 in the actions group across 1 directory #144

Workflow file for this run

---
name: Linting
on: [pull_request]
permissions:
contents: read
jobs:
flake8:
name: flake8
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Set up Python 3
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: '3.x'
- name: Install flake8
run: pip3 install 'flake8>=3.8'
- name: Set up reviewdog
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
- name: Run flake8
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -o pipefail
flake8 | \
reviewdog -f=pep8 -name=flake8 \
-tee -reporter=github-check -filter-mode nofilter