File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 2626 generate-cdk-version-matrix :
2727 runs-on : ubuntu-latest
2828 outputs :
29- matrix : ${{ steps.set-matrix.outputs.matrix }}
29+ matrix : ${{ steps.set-matrix.env.MATRIX }}
3030 steps :
3131 - name : Use Node.js ${{ inputs.node-version }}
3232 uses : actions/setup-node@v2
3535 - name : Obtain aws-cdk versions
3636 id : set-matrix
3737 run : |
38- VERSIONS_ARRAY=$(npm show aws-cdk time --json --silent| jq 'del(.created, .modified) | keys' -c)
39- echo "MATRIX={\"cdk-version\":$( echo "$VERSIONS_ARRAY" )}"
40- echo "::set-output name=matrix::$MATRIX"
38+ VERSIONS_ARRAY=$(npm show aws-cdk time --json | jq 'del(.created, .modified) | keys' -c)
39+ echo "MATRIX={\"cdk-version\":$( echo "$VERSIONS_ARRAY" )}" >> $GITHUB_ENV
4140
4241
4342 version-testing :
You can’t perform that action at this time.
0 commit comments