Skip to content

Commit

Permalink
Update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Dec 14, 2023
1 parent b5c7e60 commit 9e7ac1e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: '3.11'
- run: pip install . matplotlib pycryptodome rc4
- run: nice -19 python benchmark.py -o benchmark.svg
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: benchmark
path: benchmark.svg
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
python-version: '3.11'
- run: python setup.py sdist --verbose
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/arc4-*.tar.gz
build-wheels:
Expand All @@ -46,7 +46,7 @@ jobs:
python-version: "${{ matrix.python-version }}"
- run: pip install wheel
- run: python setup.py bdist_wheel
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*whl
build-manylinux-wheels:
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- run: /opt/python/${{ matrix.python-version }}/bin/pip wheel .
- run: auditwheel repair arc4-*-linux*.whl --plat manylinux_2_28_x86_64
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: wheelhouse/arc4-*-manylinux*.whl
deploy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -36,7 +36,7 @@ jobs:
gcov -o build/temp.* arc4.c
rm -f *.h.gcov
./cc-test-reporter format-coverage --input-type gcov --output 'coverage.${{ matrix.python-version }}.xml' .
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: coverages
path: coverage.${{ matrix.python-version }}.xml
Expand Down

0 comments on commit 9e7ac1e

Please sign in to comment.