From 3cadcf8d05ebb2b5508bd07b0f1c4f465e641b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 8 Nov 2024 16:17:22 +0100 Subject: [PATCH] Use Python 3.11 in rebuild --- .github/renovate.json5 | 5 +++++ .github/workflows/rebuild.yaml | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index da0364e03..e963b9d4d 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -97,5 +97,10 @@ matchDepNames: ['python'], groupName: 'Python', }, + /** Ignore .github/workflows/rebuild-*.yaml */ + { + matchFileNames: ['.github/workflows/rebuild.yaml'], + enabled: false, + }, ], } diff --git a/.github/workflows/rebuild.yaml b/.github/workflows/rebuild.yaml index afb4ad92b..c2c5164b0 100644 --- a/.github/workflows/rebuild.yaml +++ b/.github/workflows/rebuild.yaml @@ -38,6 +38,10 @@ jobs: github-gopass-ci-token: ${{secrets.GOPASS_CI_GITHUB_TOKEN}} patterns: pypi docker + - uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Check .tool-versions file existence id: tool-versions uses: andstor/file-existence-action@v3