Skip to content

chore(deps): Bump github/codeql-action from 4.31.7 to 4.32.2 #38

chore(deps): Bump github/codeql-action from 4.31.7 to 4.32.2

chore(deps): Bump github/codeql-action from 4.31.7 to 4.32.2 #38

Workflow file for this run

name: Security Check
# On all pushes to PRs or pushes to specific branches. Not on ALL pushes in general because it will
# double if pushing to a PR.
on:
pull_request:
push:
branches:
- 'master'
- 'dev'
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
# NOTE: Keep at 3.13 until Bandit updates with 3.14 support!
python-version: ['3.13']
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830
with:
path: ~/.cache/pip
key: ${{ runner.os}}-pip-${{ hashFiles('**/.*-requirements.txt') }}
restore-keys: |
${{ runner.os}}-pip-
- name: Security Check
run: ./misc/actions/security-check.sh