From 7ba4f3658e364dd970acd0b27fda26fb7b0c841f Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 27 May 2025 12:32:54 -0700 Subject: [PATCH] upgrade poetry to 2.1.3 --- .github/workflows/checks.yml | 2 +- .github/workflows/deploy-demo.yml | 2 +- .github/workflows/deploy-prod.yml | 2 +- .github/workflows/deploy.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 17de8332f..8ba96a4d2 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -139,7 +139,7 @@ jobs: - uses: actions/checkout@v4 - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: poetry export --without-hashes --format=requirements.txt > requirements.txt + run: poetry export --output requirements.txt - uses: pypa/gh-action-pip-audit@v1.1.0 with: inputs: requirements.txt diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index b16607c61..7aec7adb7 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -42,7 +42,7 @@ jobs: - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: poetry export --without-hashes --format=requirements.txt > requirements.txt + run: poetry export --output requirements.txt - name: Deploy to cloud.gov uses: cloud-gov/cg-cli-tools@main diff --git a/.github/workflows/deploy-prod.yml b/.github/workflows/deploy-prod.yml index 05c7ccf26..02e65c36c 100644 --- a/.github/workflows/deploy-prod.yml +++ b/.github/workflows/deploy-prod.yml @@ -42,7 +42,7 @@ jobs: - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: poetry export --without-hashes --format=requirements.txt > requirements.txt + run: poetry export --output requirements.txt - name: Deploy to cloud.gov uses: cloud-gov/cg-cli-tools@main diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1a95d7ba1..221f361e4 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -47,7 +47,7 @@ jobs: - uses: ./.github/actions/setup-project - name: Create requirements.txt - run: poetry export --without-hashes --format=requirements.txt > requirements.txt + run: poetry export --output requirements.txt - name: Deploy to cloud.gov