From 00e2412bf31765174aabab007486849c9f2eda74 Mon Sep 17 00:00:00 2001 From: Ralf Konrad <42419984+ralfkonrad@users.noreply.github.com> Date: Sat, 16 Dec 2023 16:51:27 +0100 Subject: [PATCH] Bump actions/upload-artifact and actions/download-artifact from 3 to 4 --- .github/actions/build_native_library/action.yml | 2 +- .github/workflows/build_maven_artefact.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/build_native_library/action.yml b/.github/actions/build_native_library/action.yml index 207b816..363ad5d 100644 --- a/.github/actions/build_native_library/action.yml +++ b/.github/actions/build_native_library/action.yml @@ -45,7 +45,7 @@ runs: - name: Upload native library if: ${{ inputs.upload-path != '' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: native-library-${{ runner.os }} path: ${{ inputs.upload-path }} diff --git a/.github/workflows/build_maven_artefact.yml b/.github/workflows/build_maven_artefact.yml index 3046428..9272bd4 100644 --- a/.github/workflows/build_maven_artefact.yml +++ b/.github/workflows/build_maven_artefact.yml @@ -55,13 +55,13 @@ jobs: submodules: "true" - name: Download macOS native library - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: native-library-macOS path: ${{ env.JAVA_RESOURCES_NATIVE_LIBS_PATH }} - name: Download Windows native library - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: native-library-Windows path: ${{ env.JAVA_RESOURCES_NATIVE_LIBS_PATH }} @@ -91,7 +91,7 @@ jobs: gpg-secret-key-password: ${{ secrets.GPG_SECRET_KEY_PASSWORD }} - name: Upload quantlib-${{ env.QUANTLIB_VERSION }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: quantlib-${{ env.QUANTLIB_VERSION }} if-no-files-found: error