From 3f5ccec8312792dfb70f37e2b8c170c0767048ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9cile=20Vuilleumier?= Date: Mon, 7 Oct 2024 10:54:43 +0200 Subject: [PATCH] Use venv --- .github/workflows/main.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 171756e..ada6e1e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -12,7 +12,6 @@ jobs: runs-on: ubuntu-24.04 timeout-minutes: 15 if: "!startsWith(github.event.head_commit.message, '[skip ci] ')" - steps: - uses: actions/checkout@v4 - uses: camptocamp/initialise-gopass-summon-action@v2 @@ -23,8 +22,10 @@ jobs: if: env.HAS_SECRETS == 'HAS_SECRETS' - run: echo "${HOME}/.local/bin" >> ${GITHUB_PATH} - - run: python3 -m pip install --user --requirement=ci/requirements.txt - + - run: python3 -m venv /tmp/venv + - run: echo /tmp/venv/bin >> ${GITHUB_PATH} + - run: python3 -m pip install --requirement=ci/requirements.txt + name: Install CI requirements - uses: actions/cache@v4 with: path: ~/.cache/pre-commit