This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch v4
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
The following commit(s) were added to refs/heads/v4 by this push:
new 1b94f7a Add support for Maven 4 - fix misspell
1b94f7a is described below
commit 1b94f7a49c14dd2c1721d522ed3d0f1d994d0b07
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Mon Jun 3 18:28:43 2024 +0200
Add support for Maven 4 - fix misspell
---
.github/workflows/maven-verify.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/maven-verify.yml
b/.github/workflows/maven-verify.yml
index 8069181..12e763a 100644
--- a/.github/workflows/maven-verify.yml
+++ b/.github/workflows/maven-verify.yml
@@ -50,7 +50,7 @@ on:
default: '[ "3.6.3", "3.9.7" ]'
type: string
- maven4-verison:
+ maven4-version:
description: The Maven 4.x version matrix
required: false
default: '4.0.0-beta-3'
@@ -255,7 +255,7 @@ jobs:
{
echo 'matrix<<EOF'
if [ "${{ inputs.maven4-enabled }}" = "true" ]; then
- echo '${{ inputs.maven-matrix }}' | jq -c '. + ["${{
inputs.maven4-verison }}"]'
+ echo '${{ inputs.maven-matrix }}' | jq -c '. + ["${{
inputs.maven4-version }}"]'
else
echo '${{ inputs.maven-matrix }}'
fi
@@ -270,7 +270,7 @@ jobs:
{
echo 'matrix<<EOF'
if [ "${{ inputs.maven4-enabled }}" = "true" ]; then
- echo '${{ inputs.matrix-exclude }}' | jq -c '. + [{"jdk": "8",
"maven": "${{ inputs.maven4-verison }}"}]'
+ echo '${{ inputs.matrix-exclude }}' | jq -c '. + [{"jdk": "8",
"maven": "${{ inputs.maven4-version }}"}]'
else
echo '${{ inputs.matrix-exclude }}'
fi