Skip to content

chore(deps): update github actions to v6.0.3 (#67) #75

chore(deps): update github actions to v6.0.3 (#67)

chore(deps): update github actions to v6.0.3 (#67) #75

Workflow file for this run

name: Python Checks
on:
push:
branches: [ main, development ]
pull_request:
branches: [ main, development ]
schedule:
- cron: '0 5 * * 0'
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.14'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 bandit
- name: Lint with flake8
run: flake8 static/scripts/saxion-eduroam.py --max-line-length=120
- name: Security scan with bandit
run: bandit -r static/scripts/saxion-eduroam.py -ll