Skip to content

Commit 2c80301

Browse files
authored
Merge pull request #20 from maxkratz/feature/update-github-ci-actions
Updates all GitHub Actions to v4
2 parents e19e4a0 + 6a2e70f commit 2c80301

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: [ubuntu-22.04]
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Set up
1717
run: docker pull python:3.8
1818
- name: Lint
@@ -23,13 +23,13 @@ jobs:
2323
needs: [lint]
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
- name: Set up
2828
run: pip install -r requirements.txt
2929
- name: Build
3030
run: python setup.py sdist bdist_wheel
3131
- name: Upload artifact
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: python-build
3535
path: |
@@ -43,11 +43,11 @@ jobs:
4343
needs: [build]
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v3
46+
uses: actions/checkout@v4
4747
- name: Set up
4848
run: pip install -r requirements.txt
4949
- name: Download build
50-
uses: actions/download-artifact@v3
50+
uses: actions/download-artifact@v4
5151
with:
5252
name: python-build
5353
- name: Test installation

0 commit comments

Comments
 (0)