Skip to content

Commit 985a033

Browse files
authored
Revamp CI/CD (#366)
1 parent d07454b commit 985a033

File tree

4 files changed

+180
-169
lines changed

4 files changed

+180
-169
lines changed

.github/workflows/cd.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
publish:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111

1212
- name: Install poetry
1313
run: pipx install poetry
1414

15-
- uses: actions/setup-python@v4
15+
- uses: actions/setup-python@v5
1616
with:
1717
python-version: "3.12"
1818
cache: poetry

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: Install poetry
2121
run: pipx install poetry
2222

23-
- uses: actions/setup-python@v4
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: poetry
@@ -35,6 +35,6 @@ jobs:
3535

3636
- run: ./scripts/ci.sh
3737

38-
- uses: codecov/codecov-action@v3
38+
- uses: codecov/codecov-action@v4
3939

4040
- run: poetry build

0 commit comments

Comments
 (0)