From e253aed2e79b9f9edcb7a4dfbfeda1b7785c9df7 Mon Sep 17 00:00:00 2001 From: FeliPython Date: Tue, 29 Oct 2024 12:17:51 -0300 Subject: [PATCH] Update Python version command in GitHub workflow Modified the command for checking the Python version to use 'uv run' instead of 'python'. This ensures consistency and proper execution within the specified environment. --- .github/workflows/sync-to-ynab.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-to-ynab.yml b/.github/workflows/sync-to-ynab.yml index e78b113..efcef69 100644 --- a/.github/workflows/sync-to-ynab.yml +++ b/.github/workflows/sync-to-ynab.yml @@ -25,7 +25,7 @@ jobs: - run: uv --version - name: Install Python 3.12 run: uv python install 3.12 - - run: python --version + - run: uv run python --version - name: Verify cache if: steps.setup-uv.outputs.cache-hit == 'true' run: echo "Cache was restored"