Skip to content

Commit

Permalink
Bump actions/setup-python to v5.
Browse files Browse the repository at this point in the history
  • Loading branch information
tompollard committed Jul 19, 2024
1 parent 2598097 commit 0fe550b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0fe550b

Please sign in to comment.