Skip to content

chore(deps): update github actions #90

chore(deps): update github actions

chore(deps): update github actions #90

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.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 src/static/scripts/saxion-eduroam.py --max-line-length=120
- name: Security scan with bandit
run: bandit -r src/static/scripts/saxion-eduroam.py -ll