build(deps-dev): bump mypy from 2.3.0 to 2.3.1 in /tools/secure_boot_hil #27
This file contains hidden or 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: Security tests | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: security-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| security: | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 45 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Set up Python | |
| uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 | |
| with: | |
| python-version: "3.12" | |
| - name: Install firmware toolchain | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y --no-install-recommends \ | |
| gcc-arm-none-eabi \ | |
| binutils-arm-none-eabi \ | |
| libnewlib-arm-none-eabi \ | |
| make | |
| - name: Install dependencies | |
| run: python -m pip install -r requirements-security.txt | |
| - name: Run full local security profile | |
| run: make test-security PYTHON=python SECURITY_FUZZ_ITERATIONS=10000 |