diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index f4c38a39f..7e92c1546 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -13,6 +13,6 @@ runs: uses: actions/setup-python@v3 with: python-version: "3.9" - - name: Install pipenv + - name: Install poetry shell: bash run: pip install --upgrade poetry diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6520cefa5..a0fe99391 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -76,7 +76,7 @@ jobs: - uses: actions/checkout@v3 - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: poetry export --format=requirements.txt > requirements.txt + run: poetry export --without-hashes --format=requirements.txt > requirements.txt - uses: pypa/gh-action-pip-audit@v1.0.6 with: inputs: requirements.txt diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 45e92fbd8..1d96bcba4 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -46,7 +46,7 @@ jobs: run: make bootstrap - name: Create requirements.txt - run: poetry export --format=requirements.txt > requirements.txt + run: poetry export --without-hashes --format=requirements.txt > requirements.txt - name: Deploy to cloud.gov uses: 18f/cg-deploy-action@main diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 466165e11..3d68c561d 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -50,7 +50,7 @@ jobs: run: make bootstrap - name: Create requirements.txt - run: poetry export --format=requirements.txt > requirements.txt + run: poetry export --without-hashes --format=requirements.txt > requirements.txt - name: Deploy to cloud.gov uses: 18f/cg-deploy-action@main diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e89b9c754..512324fb4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,7 +51,7 @@ jobs: run: make bootstrap - name: Create requirements.txt - run: poetry export --format=requirements.txt > requirements.txt + run: poetry export --without-hashes --format=requirements.txt > requirements.txt - name: Deploy to cloud.gov uses: 18f/cg-deploy-action@main