Skip to content

fix: requirements.txt to reduce vulnerabilities #18

fix: requirements.txt to reduce vulnerabilities

fix: requirements.txt to reduce vulnerabilities #18

Workflow file for this run

- name: Automatic requirements.txt generation for Python Projects
uses: timmypidashev/[email protected]

Check failure on line 3 in .github/workflows/auto-pipreqs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/auto-pipreqs.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
name: Integration Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Self test
id: selftest
uses: timmypidashev/auto-pipreqs-cpy@master
# Put an example of mandatory inputs here
with:
IGNORE_PATH: subodules #default is none, i added because i needed it at one point :)
PROJECT_PATH: #default is the root of the repository
REQUIREMENT_PATH: requirements.txt #default is requirement.txt in the root of your repository
name: "Automatic requirements.txt generation for Python Projects"
description: "This action will automatically create the requirements.txt file for a python project using the pipreqs tool."
author: "Timothy Pidashev"
inputs:
PROJECT_PATH:
description: "Gives the path of the project"
required: true
default: "."
IGNORE_PATH:
description: "Ignores external dependencies such as submodules"
required: true
default: ""
REQUIREMENT_PATH:
description: "Folder where requirements.txt has to be saved in"
required: true
default: "requirements.txt"
PROJECT_NAME:
description: "Name of the project to include in the commit"
required: true
default: ""
runs:
using: "docker"
image: "Dockerfile"
branding:
icon: 'code'
color: 'yellow'