Skip to content

Bump pillow from 12.2.0 to 12.3.0 in the uv group across 1 directory #46

Bump pillow from 12.2.0 to 12.3.0 in the uv group across 1 directory

Bump pillow from 12.2.0 to 12.3.0 in the uv group across 1 directory #46

Workflow file for this run

name: Bandit
on:
push:
branches: [main]
pull_request:
paths:
- "src/**"
- "pyproject.toml"
- "justfile"
- ".github/workflows/bandit.yml"
workflow_dispatch:
permissions:
contents: read
concurrency:
group: bandit-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
bandit-analysis:
name: Run Bandit
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write # allow uploading code scanning results
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
id: sp
with:
python-version: "3.x"
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39
with:
enable-cache: false
- name: Install Just
uses: extractions/setup-just@53165ef7e734c5c07cb06b3c8e7b647c5aa16db3
- name: Run Bandit
run: |
just bandit
- name: Upload analysis results
if: ${{ always() }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a
with:
name: bandit-results
path: bandit.sarif
retention-days: 7
- name: Upload to code-scanning
if: ${{ always() }}
uses: github/codeql-action/upload-sarif@8aad20d150bbac5944a9f9d289da16a4b0d87c1e
with:
sarif_file: bandit.sarif