From a3b5c1c3a7ea39e7d356c82adbab0c65ec614f35 Mon Sep 17 00:00:00 2001 From: Andreas Eknes Lie Date: Fri, 5 Apr 2024 10:24:33 +0200 Subject: [PATCH] Update artifact actions --- .github/workflows/bundle_with_dakota_macos.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/bundle_with_dakota_macos.yml b/.github/workflows/bundle_with_dakota_macos.yml index 0e23bcc9..ba7bb0a2 100644 --- a/.github/workflows/bundle_with_dakota_macos.yml +++ b/.github/workflows/bundle_with_dakota_macos.yml @@ -312,10 +312,10 @@ jobs: DYLD_LIBRARY_PATH=${EXTENDED_DYLD_LIBRARY_PATH} delocate-wheel -w /tmp/carolina_dist -v $unfixed_wheel_path echo "Output new carolina wheel to /tmp/carolina_dist" ls -lh /tmp/carolina_dist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 id: cache-carolina_wheel with: - name: macOS_python_wheels + name: ${{ matrix.os }}_py-${{ matrix.python-version }}_wheel path: /tmp/carolina_dist/carolina* tests: @@ -362,7 +362,7 @@ jobs: python --version - name: Download Carolina artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: path: /tmp/artifacts @@ -375,7 +375,6 @@ jobs: pyver_nodot=$(echo ${{ matrix.python-version }} | sed 's/\.//g') arch_ver=$(uname -m) - ls -lah /tmp/artifacts/macOS_python_wheels wheel_path=$(find /tmp/artifacts -name "carolina*-cp$pyver_nodot*-cp$pyver_nodot*macos*$arch_ver*whl") echo "Found Carolina wheel at $wheel_path"