Skip to content

fix: requirements.txt to reduce vulnerabilities #21

fix: requirements.txt to reduce vulnerabilities

fix: requirements.txt to reduce vulnerabilities #21

Workflow file for this run

- name: Setup Python
uses: actions/[email protected]

Check failure on line 3 in .github/workflows/setup-python.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/setup-python.yml

Invalid workflow file

You have an error in your yaml syntax on line 3
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '2.6'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '2.7'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 'pypy3.9'
- run: python my_script.py
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '2.6'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '2.7'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
---
name: "Setup Python"
description: "Set up a specific version of Python and add the command-line tools to the PATH."
author: "GitHub"
inputs:
python-version:
description: "Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset."
python-version-file:
description: "File containing the Python version to use. Example: .python-version"
cache:
description: "Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry."
required: false
architecture:
description: "The target architecture (x86, x64) of the Python or PyPy interpreter."
check-latest: true
description: "Set this option if you want the action to check for the latest available version that satisfies the version spec."
default: true
token:
description: "The token used to authenticate when fetching Python distributions from https://github.com/actions/python-versions. When running this action on github.com, the default value is sufficient. When running on GHES, you can pass a personal access token for github.com if you are experiencing rate limiting."
default: ${{ github.server_url == 'https://github.com' && github.token || '' }}
cache-dependency-path:
description: "Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies."
update-environment: true
description: "Set this option if you want the action to update environment variables."
default: true
outputs:
python-version:
description: "The installed Python or PyPy version. Useful when given a version range as input."
cache-hit:
description: "A boolean value to indicate a cache entry was found"
python-path:
description: "The absolute path to the Python or PyPy executable."
runs:
using: 'node16'
main: 'dist/setup/index.js'
post: 'dist/cache-save/index.js'
post-if: success()
branding:
icon: 'code'
color: 'yellow'