From d1dcb739f277ae9dae459d37cf2fb1f9f0c21b27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 21:14:53 +0000 Subject: [PATCH] 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](https://github.com/actions/upload-artifact/compare/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] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/deltachat-rpc-server.yml | 10 +++++----- .../workflows/publish-deltachat-rpc-client-pypi.yml | 2 +- .github/workflows/repl.yml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c43b0db4f..2b4e243c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -168,7 +168,7 @@ jobs: run: cargo build -p deltachat_ffi - name: Upload C library - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.os }}-libdeltachat.a path: target/debug/libdeltachat.a @@ -193,7 +193,7 @@ jobs: run: cargo build -p deltachat-rpc-server - name: Upload deltachat-rpc-server - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ matrix.os }}-deltachat-rpc-server path: ${{ matrix.os == 'windows-latest' && 'target/debug/deltachat-rpc-server.exe' || 'target/debug/deltachat-rpc-server' }} diff --git a/.github/workflows/deltachat-rpc-server.yml b/.github/workflows/deltachat-rpc-server.yml index f87be4e72..045352c9e 100644 --- a/.github/workflows/deltachat-rpc-server.yml +++ b/.github/workflows/deltachat-rpc-server.yml @@ -40,7 +40,7 @@ jobs: run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-linux - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: deltachat-rpc-server-${{ matrix.arch }}-linux path: result/bin/deltachat-rpc-server @@ -64,7 +64,7 @@ jobs: run: nix build .#deltachat-rpc-server-${{ matrix.arch }} - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: deltachat-rpc-server-${{ matrix.arch }} path: result/bin/deltachat-rpc-server.exe @@ -91,7 +91,7 @@ jobs: run: cargo build --release --package deltachat-rpc-server --target ${{ matrix.arch }}-apple-darwin --features vendored - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: deltachat-rpc-server-${{ matrix.arch }}-macos path: target/${{ matrix.arch }}-apple-darwin/release/deltachat-rpc-server @@ -115,7 +115,7 @@ jobs: run: nix build .#deltachat-rpc-server-${{ matrix.arch }}-android - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: deltachat-rpc-server-${{ matrix.arch }}-android path: result/bin/deltachat-rpc-server @@ -384,7 +384,7 @@ jobs: ls -lah - name: Upload to artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: deltachat-rpc-server-npm-package path: deltachat-rpc-server/npm-package/*.tgz diff --git a/.github/workflows/publish-deltachat-rpc-client-pypi.yml b/.github/workflows/publish-deltachat-rpc-client-pypi.yml index f4407259c..57c2bb5a4 100644 --- a/.github/workflows/publish-deltachat-rpc-client-pypi.yml +++ b/.github/workflows/publish-deltachat-rpc-client-pypi.yml @@ -23,7 +23,7 @@ jobs: working-directory: deltachat-rpc-client run: python3 -m build - name: Store the distribution packages - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: python-package-distributions path: deltachat-rpc-client/dist/ diff --git a/.github/workflows/repl.yml b/.github/workflows/repl.yml index 7671b12c3..9c3bd2a84 100644 --- a/.github/workflows/repl.yml +++ b/.github/workflows/repl.yml @@ -22,7 +22,7 @@ jobs: - name: Build run: nix build .#deltachat-repl-win64 - name: Upload binary - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: repl.exe path: "result/bin/deltachat-repl.exe"