Skip to content

Commit 0b40fc0

Browse files
committed
GitHub Actions Dependencies
Why these changes are being introduced: The previous push to GitHub failed tests because of very outdated versions in the workflows. How this addresses that need: * Update the setup-python action to v4 (from v1) * Update the python version to 3.12 (from 3.7) Side effects of this change: I have no idea yet!
1 parent 4acf6db commit 0b40fc0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@main
11-
- uses: actions/setup-python@v1
11+
- uses: actions/setup-python@v4
1212
with:
13-
python-version: "3.7"
13+
python-version: "3.12"
1414
- name: Build docs
1515
run: |
1616
pip install pipenv

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@main
12-
- uses: actions/setup-python@v1
12+
- uses: actions/setup-python@v4
1313
with:
14-
python-version: '3.7'
14+
python-version: '3.12'
1515
- name: Build docs
1616
run: |
1717
pip install pipenv

0 commit comments

Comments
 (0)