Skip to content

Commit 854b2e3

Browse files
committed
Update github workflows
1 parent 1d818a3 commit 854b2e3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ jobs:
3131

3232
strategy:
3333
matrix:
34-
python-version: ['3.9']
34+
python-version: ['3.12']
3535

3636
steps:
3737
- name: Checkout code
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v4
3939

4040
- name: Set up Python ${{ matrix.python-version }}
41-
uses: actions/setup-python@v2
41+
uses: actions/setup-python@v4
4242
with:
4343
python-version: ${{ matrix.python-version }}
4444

4545
- name: Cache pip
46-
uses: actions/cache@v2
46+
uses: actions/cache@v3
4747
with:
4848
path: ~/.cache/pip
4949
key: ${{ runner.os }}-python-${{ matrix.python }}-pip-${{ hashFiles('**/requirements*.txt') }}-git-${{ github.sha }}

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ jobs:
1111
strategy:
1212
matrix:
1313
python:
14-
- "3.7"
1514
- "3.8"
1615
- "3.9"
1716
- "3.10"
1817
- "3.11"
18+
- "3.12"
1919

2020
runs-on: ubuntu-latest
2121

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v4
2828
with:
2929
python-version: ${{ matrix.python }}
3030

3131
- name: Cache pip
32-
uses: actions/cache@v2
32+
uses: actions/cache@v3
3333
with:
3434
path: ~/.cache/pip
3535
key: ${{ runner.os }}-python-${{ matrix.python }}-pip-${{ hashFiles('**/requirements*.txt') }}-git-${{ github.sha }}

0 commit comments

Comments
 (0)