Skip to content

Commit ebc1e47

Browse files
Update GitHub Artifact Actions
1 parent 3b0fd98 commit ebc1e47

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
python-version: '3.13'
1818
- run: pip install . matplotlib pycryptodome rc4
1919
- run: nice -19 python benchmark.py -o benchmark.svg
20-
- uses: actions/upload-artifact@v4
20+
- uses: actions/upload-artifact@v5
2121
with:
2222
name: benchmark
2323
path: benchmark.svg

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: '3.13'
2121
- run: pip install setuptools
2222
- run: python setup.py sdist --verbose
23-
- uses: actions/upload-artifact@v4
23+
- uses: actions/upload-artifact@v5
2424
with:
2525
name: arc4-sdist
2626
path: dist/arc4-*.tar.gz
@@ -47,7 +47,7 @@ jobs:
4747
python-version: "${{ matrix.python-version }}"
4848
- run: pip install setuptools wheel
4949
- run: python setup.py bdist_wheel
50-
- uses: actions/upload-artifact@v4
50+
- uses: actions/upload-artifact@v5
5151
with:
5252
name: arc4-wheels-${{ matrix.os }}-${{ matrix.python-version }}
5353
path: dist/*whl
@@ -71,7 +71,7 @@ jobs:
7171
- run: pip install setuptools
7272
- run: /opt/python/${{ matrix.python-version }}/bin/pip wheel .
7373
- run: auditwheel repair arc4-*-linux*.whl --plat manylinux_2_28_x86_64
74-
- uses: actions/upload-artifact@v4
74+
- uses: actions/upload-artifact@v5
7575
with:
7676
name: arc4-wheels-manylinux-${{ matrix.python-version }}
7777
path: wheelhouse/arc4-*-manylinux*.whl
@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
python-version: '3.13'
8989
- run: pip install twine
90-
- uses: actions/download-artifact@v5
90+
- uses: actions/download-artifact@v6
9191
with:
9292
pattern: arc4-*
9393
merge-multiple: true

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ jobs:
3333
gcov -o build/temp.* arc4.c
3434
rm -f *.h.gcov
3535
./cc-test-reporter format-coverage --input-type gcov --output 'coverage.${{ matrix.python-version }}.xml' .
36-
- uses: actions/upload-artifact@v4
36+
- uses: actions/upload-artifact@v5
3737
with:
3838
name: coverages-${{ matrix.python-version }}
3939
path: coverage.${{ matrix.python-version }}.xml
4040
upload-coverage:
4141
runs-on: ubuntu-24.04
4242
needs: test
4343
steps:
44-
- uses: actions/download-artifact@v5
44+
- uses: actions/download-artifact@v6
4545
with:
4646
pattern: coverages-*
4747
merge-multiple: true

0 commit comments

Comments
 (0)