Skip to content

Commit c2e10cf

Browse files
committed
upgrade upload/download-artifact in ci-cd
1 parent ab5be64 commit c2e10cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci-cd.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
run: python3 -m build ${{ matrix.pkg[1] }}
8484
- name: Check distributions
8585
run: twine check ${{ matrix.pkg[1] }}/dist/*
86-
- uses: actions/upload-artifact@v3
86+
- uses: actions/upload-artifact@v4
8787
with:
8888
name: built-${{ matrix.pkg[0] }}
8989
path: ${{ matrix.pkg[1] }}/dist
@@ -111,7 +111,7 @@ jobs:
111111
cd docs
112112
make html
113113
cd ..
114-
- uses: actions/upload-artifact@v3
114+
- uses: actions/upload-artifact@v4
115115
with:
116116
name: built-docs
117117
path: docs/build/html
@@ -121,7 +121,7 @@ jobs:
121121
runs-on: ubuntu-latest
122122
steps:
123123
- name: Download build
124-
uses: actions/download-artifact@v3
124+
uses: actions/download-artifact@v4
125125
with:
126126
name: built-main
127127
path: dist
@@ -143,7 +143,7 @@ jobs:
143143
runs-on: ubuntu-latest
144144
steps:
145145
- name: Download build
146-
uses: actions/download-artifact@v3
146+
uses: actions/download-artifact@v4
147147
with:
148148
name: built-extras
149149
path: dist
@@ -165,7 +165,7 @@ jobs:
165165
runs-on: ubuntu-latest
166166
steps:
167167
- name: Download built docs
168-
uses: actions/download-artifact@v3
168+
uses: actions/download-artifact@v4
169169
with:
170170
name: built-docs
171171
path: docs-build

0 commit comments

Comments
 (0)