From 67cb68204d61790c8daa0957719bf1e3ad7057e4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 17 Feb 2024 13:36:33 +0000 Subject: [PATCH] ci(deps): update github artifact actions to v4 --- .github/workflows/build-and-deploy.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 46271112..b07efeeb 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -41,19 +41,19 @@ jobs: run: cd native && cargo build --release - name: Upload artifact on Linux if: ${{ matrix.os == 'ubuntu-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-library path: native/target/release/*.so - name: Upload artifact on MacOS if: ${{ matrix.os == 'macos-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-library path: native/target/release/*.dylib - name: Upload artifact on Windows if: ${{ matrix.os == 'windows-latest' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-library path: native\target\release\*.dll @@ -81,7 +81,7 @@ jobs: with: fetch-depth: 0 - name: Download native artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: native-library - name: Copy native library on Linux @@ -144,7 +144,7 @@ jobs: with: java-version: '17' - name: Download native artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: native-library - name: Release