Skip to content

Commit cdcacf2

Browse files
committed
ci: update actions/upload-artifact
There are no breaking changes listed in the README that affect our usage.
1 parent 51aaaf2 commit cdcacf2

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
run: cargo build -p deltachat_ffi --features jsonrpc
121121

122122
- name: Upload C library
123-
uses: actions/upload-artifact@v3
123+
uses: actions/upload-artifact@v4
124124
with:
125125
name: ${{ matrix.os }}-libdeltachat.a
126126
path: target/debug/libdeltachat.a
@@ -142,7 +142,7 @@ jobs:
142142
run: cargo build -p deltachat-rpc-server
143143

144144
- name: Upload deltachat-rpc-server
145-
uses: actions/upload-artifact@v3
145+
uses: actions/upload-artifact@v4
146146
with:
147147
name: ${{ matrix.os }}-deltachat-rpc-server
148148
path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: sh scripts/zig-rpc-server.sh
3434

3535
- name: Upload dist directory with Linux binaries
36-
uses: actions/upload-artifact@v3
36+
uses: actions/upload-artifact@v4
3737
with:
3838
name: linux
3939
path: dist/
@@ -66,7 +66,7 @@ jobs:
6666
run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.target }} --features vendored
6767

6868
- name: Upload binary
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: deltachat-rpc-server-${{ matrix.artifact }}
7272
path: target/${{ matrix.target}}/release/${{ matrix.path }}
@@ -92,7 +92,7 @@ jobs:
9292
run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored
9393

9494
- name: Upload binary
95-
uses: actions/upload-artifact@v3
95+
uses: actions/upload-artifact@v4
9696
with:
9797
name: deltachat-rpc-server-${{ matrix.arch }}-macos
9898
path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server

.github/workflows/jsonrpc-client-npm-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
ls -lah
5050
mv $(find deltachat-jsonrpc-client-*) $DELTACHAT_JSONRPC_TAR_GZ
5151
- name: Upload Prebuild
52-
uses: actions/upload-artifact@v3
52+
uses: actions/upload-artifact@v4
5353
with:
5454
name: deltachat-jsonrpc-client.tgz
5555
path: deltachat-jsonrpc/typescript/${{ env.DELTACHAT_JSONRPC_TAR_GZ }}

.github/workflows/node-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
tar -zcvf "${{ matrix.os }}.tar.gz" -C prebuilds .
5757
5858
- name: Upload Prebuild
59-
uses: actions/upload-artifact@v3
59+
uses: actions/upload-artifact@v4
6060
with:
6161
name: ${{ matrix.os }}
6262
path: node/${{ matrix.os }}.tar.gz
@@ -125,7 +125,7 @@ jobs:
125125
tar -zcvf "linux.tar.gz" -C prebuilds .
126126
127127
- name: Upload Prebuild
128-
uses: actions/upload-artifact@v3
128+
uses: actions/upload-artifact@v4
129129
with:
130130
name: linux
131131
path: node/linux.tar.gz
@@ -201,7 +201,7 @@ jobs:
201201
ls -lah
202202
mv $(find deltachat-node-*) $DELTACHAT_NODE_TAR_GZ
203203
- name: Upload prebuild
204-
uses: actions/upload-artifact@v3
204+
uses: actions/upload-artifact@v4
205205
with:
206206
name: deltachat-node.tgz
207207
path: ${{ env.DELTACHAT_NODE_TAR_GZ }}

.github/workflows/repl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
run: cargo build -p deltachat-repl --features vendored
1919

2020
- name: Upload binary
21-
uses: actions/upload-artifact@v3
21+
uses: actions/upload-artifact@v4
2222
with:
2323
name: repl.exe
2424
path: "target/debug/deltachat-repl.exe"

0 commit comments

Comments
 (0)