Skip to content

Commit 80a96e7

Browse files
committed
fix: Update artifact actions from v3 to v4
GitHub deprecated v3, update to v4 for upload/download artifacts
1 parent 0c8dfb5 commit 80a96e7

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/multi-arch-determinism.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cat x86_hash.txt
4040
4141
- name: Upload hash artifact
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: x86-hash
4545
path: x86_hash.txt
@@ -75,7 +75,7 @@ jobs:
7575
cat arm_hash.txt
7676
7777
- name: Upload hash artifact
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: arm-hash
8181
path: arm_hash.txt
@@ -122,7 +122,7 @@ jobs:
122122
cat wasm_hash.txt
123123
124124
- name: Upload hash artifact
125-
uses: actions/upload-artifact@v3
125+
uses: actions/upload-artifact@v4
126126
with:
127127
name: wasm-hash
128128
path: wasm_hash.txt
@@ -134,17 +134,17 @@ jobs:
134134
runs-on: ubuntu-latest
135135
steps:
136136
- name: Download x86 hash
137-
uses: actions/download-artifact@v3
137+
uses: actions/download-artifact@v4
138138
with:
139139
name: x86-hash
140140

141141
- name: Download ARM hash
142-
uses: actions/download-artifact@v3
142+
uses: actions/download-artifact@v4
143143
with:
144144
name: arm-hash
145145

146146
- name: Download WASM hash
147-
uses: actions/download-artifact@v3
147+
uses: actions/download-artifact@v4
148148
with:
149149
name: wasm-hash
150150

@@ -170,3 +170,4 @@ jobs:
170170
echo "Determinism broken - this should never happen"
171171
exit 1
172172
fi
173+

0 commit comments

Comments
 (0)