Skip to content

Commit d71c163

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

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
run: cargo build -p deltachat_ffi
175175

176176
- name: Upload C library
177-
uses: actions/upload-artifact@v5
177+
uses: actions/upload-artifact@v6
178178
with:
179179
name: ${{ matrix.os }}-libdeltachat.a
180180
path: target/debug/libdeltachat.a
@@ -200,7 +200,7 @@ jobs:
200200
run: cargo build -p deltachat-rpc-server
201201

202202
- name: Upload deltachat-rpc-server
203-
uses: actions/upload-artifact@v5
203+
uses: actions/upload-artifact@v6
204204
with:
205205
name: ${{ matrix.os }}-deltachat-rpc-server
206206
path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }}

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

Lines changed: 8 additions & 8 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@v5
43+
uses: actions/upload-artifact@v6
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 }}-linux-wheel
6565

6666
- name: Upload wheel
67-
uses: actions/upload-artifact@v5
67+
uses: actions/upload-artifact@v6
6868
with:
6969
name: deltachat-rpc-server-${{ matrix.arch }}-linux-wheel
7070
path: result/*.whl
@@ -88,7 +88,7 @@ jobs:
8888
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}
8989

9090
- name: Upload binary
91-
uses: actions/upload-artifact@v5
91+
uses: actions/upload-artifact@v6
9292
with:
9393
name: deltachat-rpc-server-${{ matrix.arch }}
9494
path: result/bin/deltachat-rpc-server.exe
@@ -112,7 +112,7 @@ jobs:
112112
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-wheel
113113

114114
- name: Upload wheel
115-
uses: actions/upload-artifact@v5
115+
uses: actions/upload-artifact@v6
116116
with:
117117
name: deltachat-rpc-server-${{ matrix.arch }}-wheel
118118
path: result/*.whl
@@ -139,7 +139,7 @@ jobs:
139139
run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored
140140

141141
- name: Upload binary
142-
uses: actions/upload-artifact@v5
142+
uses: actions/upload-artifact@v6
143143
with:
144144
name: deltachat-rpc-server-${{ matrix.arch }}-macos
145145
path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server
@@ -163,7 +163,7 @@ jobs:
163163
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android
164164

165165
- name: Upload binary
166-
uses: actions/upload-artifact@v5
166+
uses: actions/upload-artifact@v6
167167
with:
168168
name: deltachat-rpc-server-${{ matrix.arch }}-android
169169
path: result/bin/deltachat-rpc-server
@@ -187,7 +187,7 @@ jobs:
187187
run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android-wheel
188188

189189
- name: Upload wheel
190-
uses: actions/upload-artifact@v5
190+
uses: actions/upload-artifact@v6
191191
with:
192192
name: deltachat-rpc-server-${{ matrix.arch }}-android-wheel
193193
path: result/*.whl
@@ -496,7 +496,7 @@ jobs:
496496
ls -lah
497497
498498
- name: Upload to artifacts
499-
uses: actions/upload-artifact@v5
499+
uses: actions/upload-artifact@v6
500500
with:
501501
name: deltachat-rpc-server-npm-package
502502
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@v5
26+
uses: actions/upload-artifact@v6
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@v5
25+
uses: actions/upload-artifact@v6
2626
with:
2727
name: repl.exe
2828
path: "result/bin/deltachat-repl.exe"

0 commit comments

Comments
 (0)