From faf7a4c803219bc80d8d77e9ab22d73a771439b3 Mon Sep 17 00:00:00 2001 From: Curtis Rueden Date: Tue, 14 Jan 2025 15:53:32 -0600 Subject: [PATCH] CI: update Python to 3.12 It seems 3.8 is no longer available. And use a newer version of the setup-python action. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c3f5fd5..3a054a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,8 +18,8 @@ jobs: with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - name: Set up Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: Execute the build run: .github/build.sh