Skip to content

Commit 9eb3aad

Browse files
bump action versions and python version from 3.9 to 3.11
1 parent 5f148f0 commit 9eb3aad

File tree

4 files changed

+21
-12
lines changed

4 files changed

+21
-12
lines changed

.github/workflows/release.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
22+
with:
23+
# all history is needed to crawl it properly
24+
fetch-depth: 0
2225
- name: Set up Python
23-
uses: actions/setup-python@v3
26+
uses: actions/setup-python@v5
2427
with:
25-
python-version: '3.9'
28+
python-version: '3.11'
2629
- name: Install build dependencies
2730
run: |
2831
if [ -f requirements-deploy.txt ]; then pip install -r requirements-deploy.txt; fi

.github/workflows/test-release.yaml

+6-3
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
19+
with:
20+
# all history is needed to crawl it properly
21+
fetch-depth: 0
1922
- name: Set up Python
20-
uses: actions/setup-python@v3
23+
uses: actions/setup-python@v5
2124
with:
22-
python-version: '3.9'
25+
python-version: '3.11'
2326
- name: Install build dependencies
2427
run: |
2528
if [ -f requirements-deploy.txt ]; then pip install -r requirements-deploy.txt; fi

.github/workflows/test.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,14 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
30+
with:
31+
# all history is needed to crawl it properly
32+
fetch-depth: 0
3033
- name: Set up Python
31-
uses: actions/setup-python@v3
34+
uses: actions/setup-python@v5
3235
with:
33-
python-version: '3.9'
36+
python-version: '3.11'
3437
- name: Install test dependencies
3538
run: |
3639
pip install -r requirements-test.txt

.github/workflows/unittest.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
test-and-coverage:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
18-
- uses: actions/setup-python@v3
17+
- uses: actions/checkout@v4
18+
- uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.9'
20+
python-version: '3.11'
2121
- name: Execute tests
2222
run: |
2323
pip install -r requirements-test.txt

0 commit comments

Comments
 (0)