From 0fe550b5ab8228de7dd4688eec0f0cf8c468af4f Mon Sep 17 00:00:00 2001 From: Tom Pollard Date: Fri, 19 Jul 2024 11:03:13 -0400 Subject: [PATCH] Bump actions/setup-python to v5. --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/run-tests.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 89272be..0c1b777 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,10 +20,10 @@ jobs: - uses: actions/checkout@v4 # Install dependencies - - name: Set up Python 3.9 - uses: actions/setup-python@v2 + - name: Set up Python + uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: 3.10 - name: Install dependencies run: | diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 52abe81..21f1a09 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - python-version: ["3.8", "3.9"] + python-version: ["3.10"] steps: # Checkout the latest code from the repo # https://github.com/actions/checkout @@ -26,7 +26,7 @@ jobs: # Setup which version of Python to use # https://github.com/actions/setup-python - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} # Display the Python version being used