Skip to content

Commit db7bf66

Browse files
use v4 upload/download actions
1 parent bfe9c01 commit db7bf66

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/build-ast.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
- name: Build package
7676
run: python -m build --wheel --sdist .
7777

78-
- uses: actions/upload-artifact@v2
78+
- uses: actions/upload-artifact@v4
7979
with:
8080
name: openpulse-python-wheel
8181
path: ./source/openpulse/dist/*.whl
8282
if-no-files-found: error
8383

84-
- uses: actions/upload-artifact@v2
84+
- uses: actions/upload-artifact@v4
8585
with:
8686
name: openpulse-python-sdist
8787
path: ./source/openpulse/dist/*.tar.gz

.github/workflows/deploy-ast.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
# The version checker uses 'importlib.metadata' which is Python 3.10+.
2626
python-version: '3.10'
2727

28-
- uses: actions/download-artifact@v3
28+
- uses: actions/download-artifact@v4
2929
with:
3030
name: openpulse-python-wheel
3131

32-
- uses: actions/download-artifact@v3
32+
- uses: actions/download-artifact@v4
3333
with:
3434
name: openpulse-python-sdist
3535

@@ -59,4 +59,4 @@ jobs:
5959
set -e
6060
source .venv/bin/activate
6161
python3 -mpip install -U twine
62-
twine upload openpulse-*.whl openpulse-*.tar.gz
62+
twine upload openpulse-*.whl openpulse-*.tar.gz

.github/workflows/tests-ast.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131

32-
- uses: actions/download-artifact@v3
32+
- uses: actions/download-artifact@v4
3333
with:
3434
name: openpulse-python-wheel
3535
path: ./source/openpulse/

0 commit comments

Comments
 (0)