diff --git a/.github/actions/build-node-python/action.yml b/.github/actions/build-node-python/action.yml index 0132f687..1cfd72cf 100644 --- a/.github/actions/build-node-python/action.yml +++ b/.github/actions/build-node-python/action.yml @@ -295,12 +295,12 @@ runs: # This path is the global yarn cache, because for some reason the local .yarn/cache is not used. Maybe we need to set the cacheFolder, enableGlobalCache, ... options differently? @see https://yarnpkg.com/configuration/yarnrc#cacheFolder path: ~/.yarn/berry/cache/ key: yarn-download-cache-${{ hashFiles('package.json') }} - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: inputs.enable_node == 'true' && inputs.upload_yarn_lock with: name: ${{ inputs.upload_yarn_lock }} path: ./yarn.lock - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 if: inputs.enable_node == 'true' && inputs.run_node_bundle == 'true' && inputs.upload_bundle with: name: ${{ inputs.upload_bundle }}