Skip to content

Commit 2dd87b6

Browse files
committed
ci: use actions/download-artifact@v4
download-artifact@v3 does not download artifacts uploaded with upload-artifact@v4
1 parent cdcacf2 commit 2dd87b6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196
- uses: actions/checkout@v3
197197

198198
- name: Download libdeltachat.a
199-
uses: actions/download-artifact@v3
199+
uses: actions/download-artifact@v4
200200
with:
201201
name: ${{ matrix.os }}-libdeltachat.a
202202
path: target/debug
@@ -254,7 +254,7 @@ jobs:
254254
run: pip install tox
255255

256256
- name: Download deltachat-rpc-server
257-
uses: actions/download-artifact@v3
257+
uses: actions/download-artifact@v4
258258
with:
259259
name: ${{ matrix.os }}-deltachat-rpc-server
260260
path: target/debug

.github/workflows/deltachat-rpc-server.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,31 +108,31 @@ jobs:
108108
- uses: actions/checkout@v3
109109

110110
- name: Download Linux binaries
111-
uses: actions/download-artifact@v3
111+
uses: actions/download-artifact@v4
112112
with:
113113
name: linux
114114
path: dist/
115115

116116
- name: Download win32 binary
117-
uses: actions/download-artifact@v3
117+
uses: actions/download-artifact@v4
118118
with:
119119
name: deltachat-rpc-server-win32.exe
120120
path: deltachat-rpc-server-win32.exe.d
121121

122122
- name: Download win64 binary
123-
uses: actions/download-artifact@v3
123+
uses: actions/download-artifact@v4
124124
with:
125125
name: deltachat-rpc-server-win64.exe
126126
path: deltachat-rpc-server-win64.exe.d
127127

128128
- name: Download macOS binary for x86_64
129-
uses: actions/download-artifact@v3
129+
uses: actions/download-artifact@v4
130130
with:
131131
name: deltachat-rpc-server-x86_64-macos
132132
path: deltachat-rpc-server-x86_64-macos.d
133133

134134
- name: Download macOS binary for aarch64
135-
uses: actions/download-artifact@v3
135+
uses: actions/download-artifact@v4
136136
with:
137137
name: deltachat-rpc-server-aarch64-macos
138138
path: deltachat-rpc-server-aarch64-macos.d

0 commit comments

Comments
 (0)