Skip to content

Commit 946deb0

Browse files
authored
Merge pull request #2345 from morganlittle/build-warning-fixes
Updates ci pipelines from to v3
2 parents a694187 + b395a76 commit 946deb0

File tree

5 files changed

+375
-373
lines changed

5 files changed

+375
-373
lines changed

.github/actions/get_cache_key/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ runs:
2929
SUBMODULE=${{ inputs.submodule }}
3030
SHA=$(git submodule status ${SUBMODULE} | sed -e 's/^-//g' -e 's/^+//g' -e 's/^U//g' | awk '{ print $1 }')
3131
KEY=${SUBMODULE}-${{ inputs.flavor }}_${{ inputs.arch }}_${SHA}_${{ inputs.extras }}
32-
echo "::set-output name=key::${KEY}"
32+
echo "key=${KEY}" >> $GITHUB_OUTPUT
3333
shell: bash

.github/actions/numpy_vers/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ runs:
100100
;;
101101
esac
102102
103-
echo "::set-output name=build::${NUMPY_BUILD_VERSION}"
104-
echo "::set-output name=dep::${NUMPY_DEP_VERSION}"
103+
echo "build=${NUMPY_BUILD_VERSION}" >> $GITHUB_OUTPUT
104+
echo "dep=${NUMPY_DEP_VERSION}" >> $GITHUB_OUTPUT
105105
shell: bash

.github/actions/win-numpy-vers/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,6 @@ runs:
100100
;;
101101
esac
102102
103-
echo "::set-output name=build::${NUMPY_BUILD_VERSION}"
104-
echo "::set-output name=dep::${NUMPY_DEP_VERSION}"
103+
echo "build=${NUMPY_BUILD_VERSION}" >> $GITHUB_OUTPUT
104+
echo "dep=${NUMPY_DEP_VERSION}" >> $GITHUB_OUTPUT
105105
shell: msys2 {0}

0 commit comments

Comments
 (0)