From 2889f6220a3084a9c2b4e8676dff0346bccd97b7 Mon Sep 17 00:00:00 2001 From: stvnrlly Date: Wed, 26 Oct 2022 16:21:45 -0400 Subject: [PATCH] actually write requirements to file --- .github/workflows/checks.yml | 2 +- .github/workflows/daily_checks.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6fcdf8958..9dad4fbe5 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -72,7 +72,7 @@ jobs: - uses: actions/checkout@v3 - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: pipenv requirements + run: pipenv requirements > requirements.txt - uses: trailofbits/gh-action-pip-audit@v1.0.0 with: inputs: requirements.txt diff --git a/.github/workflows/daily_checks.yml b/.github/workflows/daily_checks.yml index 1449ef3d5..d63917306 100644 --- a/.github/workflows/daily_checks.yml +++ b/.github/workflows/daily_checks.yml @@ -39,7 +39,7 @@ jobs: - uses: actions/checkout@v3 - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: pipenv requirements + run: pipenv requirements > requirements.txt - uses: trailofbits/gh-action-pip-audit@v1.0.0 with: inputs: requirements.txt