Skip to content

Commit

Permalink
Add support for Maven 4 - fix misspell
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Jun 3, 2024
1 parent bbde969 commit 7517e40
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/maven-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7517e40

Please sign in to comment.