Skip to content

Commit

Permalink
ci: Update Github Actions (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-BaptisteC authored Jan 2, 2024
1 parent 43da202 commit 02b1efe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version:
- 3.9
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -43,7 +43,7 @@ jobs:
python -m unittest discover -v -s exodus_core -p "test_*.py"
python setup.py sdist
- name: Upload archive
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release
path: dist
Expand All @@ -53,9 +53,9 @@ jobs:
if: github.event_name == 'push' && github.ref_type == 'tag'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Download archive
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release
path: dist
Expand Down

0 comments on commit 02b1efe

Please sign in to comment.