Skip to content

Commit

Permalink
Downgrade to upload/download artifact actions v3
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato committed Dec 31, 2023
1 parent b283414 commit c907817
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@v4
uses: actions/upload-artifact@v3
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@v4
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
run: |
python -m build
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
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@v4
uses: actions/download-artifact@v3
with:
name: dist
path: dist
Expand Down

0 comments on commit c907817

Please sign in to comment.