Skip to content

Update requirements.txt #40

Update requirements.txt

Update requirements.txt #40

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Packj audit demo
# Controls when the workflow will run
on:
pull_request:
branches:
- main
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "packj-audit"
packj-security-audit:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Audit
- name: Audit dependencies
uses: ossillate-inc/packj-github-action@ashishbijlani-patch-2
with:
DEPENDENCY_FILES: pypi:requirements.txt,npm:package.json
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}