Skip to content

Commit d1dcb73

Browse files
dependabot[bot]link2xt
authored andcommitted
chore(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent e34687b commit d1dcb73

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
run: cargo build -p deltachat_ffi
169169

170170
- name: Upload C library
171-
uses: actions/upload-artifact@v4
171+
uses: actions/upload-artifact@v5
172172
with:
173173
name: ${{ matrix.os }}-libdeltachat.a
174174
path: target/debug/libdeltachat.a
@@ -193,7 +193,7 @@ jobs:
193193
run: cargo build -p deltachat-rpc-server
194194

195195
- name: Upload deltachat-rpc-server
196-
uses: actions/upload-artifact@v4
196+
uses: actions/upload-artifact@v5
197197
with:
198198
name: ${{ matrix.os }}-deltachat-rpc-server
199199
path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }}

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-linux
4141

4242
- name: Upload binary
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: deltachat-rpc-server-${{ matrix.arch }}-linux
4646
path: result/bin/deltachat-rpc-server
@@ -64,7 +64,7 @@ jobs:
6464
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}
6565

6666
- name: Upload binary
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: deltachat-rpc-server-${{ matrix.arch }}
7070
path: result/bin/deltachat-rpc-server.exe
@@ -91,7 +91,7 @@ jobs:
9191
run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored
9292

9393
- name: Upload binary
94-
uses: actions/upload-artifact@v4
94+
uses: actions/upload-artifact@v5
9595
with:
9696
name: deltachat-rpc-server-${{ matrix.arch }}-macos
9797
path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server
@@ -115,7 +115,7 @@ jobs:
115115
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android
116116

117117
- name: Upload binary
118-
uses: actions/upload-artifact@v4
118+
uses: actions/upload-artifact@v5
119119
with:
120120
name: deltachat-rpc-server-${{ matrix.arch }}-android
121121
path: result/bin/deltachat-rpc-server
@@ -384,7 +384,7 @@ jobs:
384384
ls -lah
385385
386386
- name: Upload to artifacts
387-
uses: actions/upload-artifact@v4
387+
uses: actions/upload-artifact@v5
388388
with:
389389
name: deltachat-rpc-server-npm-package
390390
path: deltachat-rpc-server/npm-package/*.tgz

.github/workflows/publish-deltachat-rpc-client-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
working-directory: deltachat-rpc-client
2424
run: python3 -m build
2525
- name: Store the distribution packages
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v5
2727
with:
2828
name: python-package-distributions
2929
path: deltachat-rpc-client/dist/

.github/workflows/repl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Build
2323
run: nix build .#deltachat-repl-win64
2424
- name: Upload binary
25-
uses: actions/upload-artifact@v4
25+
uses: actions/upload-artifact@v5
2626
with:
2727
name: repl.exe
2828
path: "result/bin/deltachat-repl.exe"

0 commit comments

Comments
 (0)