Skip to content

Commit a56d37b

Browse files
committed
Updates to CI
1 parent 41ebb63 commit a56d37b

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

.github/workflows/bulid_doc.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout master
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

16-
- name: Set up Python 3.8
17-
uses: actions/setup-python@v4
16+
- name: Set up Python 3.9
17+
uses: actions/setup-python@v5
1818
with:
19-
python-version: 3.8
19+
python-version: 3.9
2020

2121
- name: Install Poetry
22-
uses: Gr1N/setup-poetry@v8
22+
uses: Gr1N/setup-poetry@v9
2323

2424
- name: Deploy docs (1)
2525
run: |

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12']
12+
python-version: ['3.9', '3.10', '3.11', '3.12']
1313

1414
name: Test Interpolation.py (Python ${{ matrix.python-version }})
1515
steps:
1616

17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1818

1919
- name: Setup python
20-
uses: actions/setup-python@v4
20+
uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
architecture: x64
2424

2525
- name: Install Poetry
26-
uses: Gr1N/setup-poetry@v8
26+
uses: Gr1N/setup-poetry@v9
2727

2828
- name: Install dependencies
2929
run: poetry install

.github/workflows/publish-to-test-pypi.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@master
16-
- name: Set up Python 3.8
17-
uses: actions/setup-python@v4
16+
17+
- name: Set up Python 3.9
18+
uses: actions/setup-python@v5
1819
with:
19-
python-version: 3.8
20+
python-version: 3.9
2021

2122
- name: Install Poetry
22-
uses: Gr1N/setup-poetry@v8
23+
uses: Gr1N/setup-poetry@v9
2324

2425
- name: Install build dependencies
2526
run: poetry install

0 commit comments

Comments
 (0)