Skip to content

Commit

Permalink
Updates all GitHub Actions to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkratz committed Mar 19, 2024
1 parent e19e4a0 commit 6a2e70f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: [ubuntu-22.04]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up
run: docker pull python:3.8
- name: Lint
Expand All @@ -23,13 +23,13 @@ jobs:
needs: [lint]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up
run: pip install -r requirements.txt
- name: Build
run: python setup.py sdist bdist_wheel
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-build
path: |
Expand All @@ -43,11 +43,11 @@ jobs:
needs: [build]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up
run: pip install -r requirements.txt
- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-build
- name: Test installation
Expand Down

0 comments on commit 6a2e70f

Please sign in to comment.