Skip to content

Bump pydantic from 1.10.13 to 2.8.2 #211

Bump pydantic from 1.10.13 to 2.8.2

Bump pydantic from 1.10.13 to 2.8.2 #211

Workflow file for this run

name: Security check - Bandit
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Code analysis with Bandit with ${{matrix.python}} on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Generate report folder and Install Bandit
run: mkdir -p path/to/file | pip install poetry bandit
- name: Bandit check Python ${{ matrix.python }}
if: always()
run: bandit -r app -o path/to/file/bandit_report_${{ matrix.python }}.txt
with:

Check failure on line 31 in .github/workflows/security_check.yml

View workflow run for this annotation

GitHub Actions / Security check - Bandit

Invalid workflow file

The workflow is not valid. .github/workflows/security_check.yml (Line: 31, Col: 7): Unexpected value 'with'
python-version: ${{ matrix.python }}
- uses: actions/upload-artifact@v4
if: always()
with:
name: Safety Reports
path: path/to/file