Skip to content

Commit f05b0a3

Browse files
authored
ci: update upload-artifact to v4 (#90)
This was failing in workflows since v3 was deprecated. Signed-off-by: Eli Uriegas <eliuriegas@meta.com>
1 parent 79caabb commit f05b0a3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
sccache: 'true'
7474
manylinux: auto
7575
- name: Upload wheels
76-
uses: actions/upload-artifact@v3
76+
uses: actions/upload-artifact@v4
7777
with:
7878
name: wheels
7979
path: dist
@@ -93,7 +93,7 @@ jobs:
9393
args: --release --out dist
9494
sccache: 'true'
9595
- name: Upload wheels
96-
uses: actions/upload-artifact@v3
96+
uses: actions/upload-artifact@v4
9797
with:
9898
name: wheels
9999
path: dist
@@ -113,7 +113,7 @@ jobs:
113113
args: --release --out dist
114114
sccache: 'true'
115115
- name: Upload wheels
116-
uses: actions/upload-artifact@v3
116+
uses: actions/upload-artifact@v4
117117
with:
118118
name: wheels
119119
path: dist
@@ -129,7 +129,7 @@ jobs:
129129
command: sdist
130130
args: --out dist
131131
- name: Upload sdist
132-
uses: actions/upload-artifact@v3
132+
uses: actions/upload-artifact@v4
133133
with:
134134
name: wheels
135135
path: dist
@@ -140,7 +140,7 @@ jobs:
140140
if: "startsWith(github.ref, 'refs/tags/')"
141141
needs: [linux, windows, macos, sdist]
142142
steps:
143-
- uses: actions/download-artifact@v3
143+
- uses: actions/download-artifact@v4
144144
with:
145145
name: wheels
146146
- name: Publish to PyPI

0 commit comments

Comments
 (0)