From 7144e0712267ce192f7edfc2ad93bb88d1e2649a Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Tue, 19 Mar 2024 12:11:52 +0100 Subject: [PATCH] ci: Tweak python --- .github/workflows/format-backend.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/format-backend.yaml b/.github/workflows/format-backend.yaml index 9d767fa5..ab36bd90 100644 --- a/.github/workflows/format-backend.yaml +++ b/.github/workflows/format-backend.yaml @@ -8,15 +8,19 @@ jobs: name: 'Format Backend' env: PUBLIC_API_BASE_URL: '' + RUNNER_TOOL_CACHE: /toolcache runs-on: ubuntu-latest strategy: matrix: node-version: - latest + python-version: [ '3.12.2' ] steps: - uses: actions/checkout@v4 - name: Use Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} - name: Use Bun uses: oven-sh/setup-bun@v1 - name: Install dependencies