From f189ce90b106645c0bd6d386f9323d70a4465fd8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:27:24 +0000 Subject: [PATCH 1/2] chore(deps): update astral-sh/setup-uv action to v6 --- .github/workflows/ci.yml | 2 +- .github/workflows/e2e-external-phase-2.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9bd678a8..dfcb0806 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v6 with: python-version: "3.12" diff --git a/.github/workflows/e2e-external-phase-2.yml b/.github/workflows/e2e-external-phase-2.yml index 7b68e862..c0beb788 100644 --- a/.github/workflows/e2e-external-phase-2.yml +++ b/.github/workflows/e2e-external-phase-2.yml @@ -89,7 +89,7 @@ jobs: ref: ${{ steps.extract_commit.outputs.COMMIT_ID }} - name: Install uv - uses: astral-sh/setup-uv@v5 + uses: astral-sh/setup-uv@v6 with: python-version: "3.12" From 85f8881ed9468e5d94eb01d97920f564dc08c80f Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Mon, 5 May 2025 10:10:42 +0200 Subject: [PATCH 2/2] in setup-uv v6, venv is not enabled by default --- .github/workflows/ci.yml | 2 +- .github/workflows/e2e-external-phase-2.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfcb0806..afb396a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: run: uv sync --all-groups - name: Run tests - run: pytest + run: uv run pytest env: COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1 }} COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2 }} diff --git a/.github/workflows/e2e-external-phase-2.yml b/.github/workflows/e2e-external-phase-2.yml index c0beb788..9a721ff5 100644 --- a/.github/workflows/e2e-external-phase-2.yml +++ b/.github/workflows/e2e-external-phase-2.yml @@ -104,7 +104,7 @@ jobs: run: uv sync --all-groups - name: Run end-to-end tests - run: pytest tests/end_to_end + run: uv run pytest tests/end_to_end env: COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_1 }} COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2: ${{ secrets.COVERAGE_COMMENT_E2E_GITHUB_TOKEN_USER_2 }}