Use old action directly in workflow #1519
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: Main | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
main: | |
runs-on: ubuntu-22.04 | |
env: | |
LANG: C.UTF-8 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup python-version | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
architecture: "x64" | |
- name: Install Python dependencies | |
run: | | |
pip install pipenv | |
pipenv install --dev --system | |
- name: Generate requirements | |
run: pip freeze > requirements.txt | |
- name: Run Snyk to check for vulnerabilities in Python | |
uses: snyk/actions/python@master | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
command: monitor --file=requirements.txt --package-manager=pip |