chore(deps): update actions/checkout action to v3.6.0 #59
This file contains 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: audit | |
on: | |
pull_request: | |
paths: | |
- '**/poetry.lock' | |
- '**/pyproject.toml' | |
- '.github/workflows/audit.yml' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
audit: | |
permissions: | |
pull-requests: write | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
name: audit dependencies | |
steps: | |
- uses: int128/[email protected] | |
with: | |
contains: Packj Audit Report | |
- uses: actions/[email protected] | |
- name: setting up python | |
uses: actions/[email protected] | |
with: | |
python-version-file: pyproject.toml | |
- name: install and configure poetry | |
uses: pronovic/[email protected] | |
with: | |
version: 1.5.1 | |
- name: export poetry locks | |
run: poetry export -f requirements.txt --output requirements.txt | |
- name: audit poetry locks | |
uses: ossillate-inc/[email protected] | |
with: | |
DEPENDENCY_FILES: pypi:requirements.txt |