Skip to content

Commit 4afcf85

Browse files
Update GitHub Artifact Actions
1 parent e32cccf commit 4afcf85

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@v6
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@v6
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@v6
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@v6
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@v7
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
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
lcov --capture --directory . --output-file coverage.info --no-external
3232
qlty coverage transform coverage.info --output "coverage.${{ matrix.python-version }}.jsonl"
33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v6
3434
with:
3535
name: coverages-${{ matrix.python-version }}
3636
path: coverage.${{ matrix.python-version }}.jsonl
@@ -39,7 +39,7 @@ jobs:
3939
needs: test
4040
steps:
4141
- uses: actions/checkout@v5
42-
- uses: actions/download-artifact@v5
42+
- uses: actions/download-artifact@v7
4343
with:
4444
pattern: coverages-*
4545
merge-multiple: true

0 commit comments

Comments
 (0)