Skip to content

Update pip-audit.yml #70

Update pip-audit.yml

Update pip-audit.yml #70

Workflow file for this run

name: PIP audit
on:
schedule:
- cron: '0 8 * * 1'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
python-version: ["3.8"]
steps:

Check failure on line 15 in .github/workflows/pip-audit.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pip-audit.yml

Invalid workflow file

You have an error in your yaml syntax on line 15
- name: Check out repository code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get install libxml2-dev libxslt-dev python3-dev libgeoip-dev ssdeep libfuzzy-dev
- name: Install poetry
run: pip install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
# check-latest: true
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install requirements
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --no-root
- uses: pypa/[email protected]
with:
inputs: requirements.txt