diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ae560e16..949fff8d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -55,7 +55,7 @@ jobs: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C ${{matrix.build_type}} -G ZIP - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{matrix.platform}} ${{matrix.build_type}} binaries path: ${{github.workspace}}/*.zip @@ -111,7 +111,7 @@ jobs: run: | cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C ${{matrix.build_type}} -G ZIP - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: macos-latest ${{matrix.build_type}} binaries path: ${{github.workspace}}/*.zip \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 981749f5..cc4a5f7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: cmake --build ${{github.workspace}}/pack --config Release cpack --config ${{github.workspace}}/pack/CPackConfig.cmake -C Release -G ZIP - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{matrix.platform}} binaries path: ${{github.workspace}}/*.zip @@ -115,7 +115,7 @@ jobs: run: | cpack --config ${{github.workspace}}/build/CPackConfig.cmake -C Release -G ZIP - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: macos-latest binaries path: ${{github.workspace}}/*.zip @@ -132,7 +132,7 @@ jobs: steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 id: download with: path: ${{ github.workspace }}/artifacts