Update node-cache/action.yml to use mvnw (#34438)
Signed-off-by: stianst <stianst@gmail.com>
This commit is contained in:
parent
33d8aebaf5
commit
9681bce5fa
1 changed files with 2 additions and 2 deletions
4
.github/actions/node-cache/action.yml
vendored
4
.github/actions/node-cache/action.yml
vendored
|
@ -8,8 +8,8 @@ runs:
|
|||
id: tooling-versions
|
||||
shell: bash
|
||||
run: |
|
||||
echo "node=$(mvn help:evaluate -Dexpression=node.version -q -DforceStdout | cut -c 2-)" >> $GITHUB_OUTPUT
|
||||
echo "pnpm=$(mvn help:evaluate -Dexpression=pnpm.version -q -DforceStdout)" >> $GITHUB_OUTPUT
|
||||
echo "node=$(./mvnw help:evaluate -Dexpression=node.version -q -DforceStdout | cut -c 2-)" >> $GITHUB_OUTPUT
|
||||
echo "pnpm=$(./mvnw help:evaluate -Dexpression=pnpm.version -q -DforceStdout)" >> $GITHUB_OUTPUT
|
||||
|
||||
# Downloading Node.js often fails due to network issues, therefore we cache the artifacts downloaded by the frontend plugin.
|
||||
- uses: actions/cache@v4
|
||||
|
|
Loading…
Reference in a new issue