From 0609af059aedf6bee03c171b515cb10b650df332 Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Mon, 27 Jan 2025 21:20:15 +0100 Subject: [PATCH] use default python again Currently, ubuntu-latest is ubuntu-24.04. ubuntu-24.04 ships with python 3.12 which is newer than python 3.11 (the version we previously manually installed). --- .github/workflows/release.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2cd1194..48ae9b9f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,12 +21,8 @@ jobs: - name: "Checkout Repository" uses: actions/checkout@v4 - # TODO: Remove when Python 3.11 is the default on the Gihtub Actions image - - name: "Install Python 3.11" - run: sudo apt-get -y install python3.11 - - name: "Run release script" - run: "python3.11 scripts/ci-release.py" + run: "python scripts/ci-release.py" env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}