From 2c2536933176ccb46e72791fa27a0a29e9713e8b Mon Sep 17 00:00:00 2001 From: Henry Mercer Date: Wed, 8 May 2024 13:48:34 +0100 Subject: [PATCH] Run release process using Python 3.12 --- .github/actions/release-initialise/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/release-initialise/action.yml b/.github/actions/release-initialise/action.yml index f2a7928668..e0a1ecca34 100644 --- a/.github/actions/release-initialise/action.yml +++ b/.github/actions/release-initialise/action.yml @@ -18,12 +18,12 @@ runs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Install dependencies run: | python -m pip install --upgrade pip - pip install PyGithub==1.55 requests + pip install PyGithub==2.3.0 requests shell: bash - name: Update git config