Skip to content

Commit fc25e11

Browse files
authored
[CI] Update the version of actions used in the CI (#51)
The PR that added this Github Action was a few years old when we merged it, so it was using versions of actions/checkout and actions/setup-python that are now outdated.
1 parent a86db1b commit fc25e11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tox.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v1
12+
- uses: actions/checkout@v5
1313
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v2
14+
uses: actions/setup-python@v6
1515
with:
16-
python-version: 3.9
16+
python-version: '3.9'
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)