Skip to content

Commit

Permalink
Workflow maintenance
Browse files Browse the repository at this point in the history
Upgrade upload and download artifact tasks to v4
  • Loading branch information
RobertoPrevato committed Dec 31, 2023
1 parent 8a26922 commit fc9e82d
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 @@ -130,7 +130,7 @@ jobs:
fi
- name: Upload pytest test results
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }}
path: junit/pytest-results-${{ matrix.os }}-${{ matrix.python-version }}.xml
Expand All @@ -149,7 +149,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' && matrix.python-version == 3.10

- name: Upload distribution package
uses: actions/upload-artifact@master
uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
run: |
python -m build
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -224,7 +224,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Download a distribution artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down

0 comments on commit fc9e82d

Please sign in to comment.