You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/05/29 21:24:35 UTC

[commons-numbers] branch master updated: Use greater than expression in GH workflow

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


The following commit(s) were added to refs/heads/master by this push:
     new 8199fb72 Use greater than expression in GH workflow
8199fb72 is described below

commit 8199fb72c4ae6894bca77efe11c8f2b9fb6025ff
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sun May 29 22:24:10 2022 +0100

    Use greater than expression in GH workflow
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index cae2f988..0ae9f1d1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -46,6 +46,6 @@ jobs:
       run: mvn -V --no-transfer-progress
     - name: Build examples with Maven
       # Examples require Java 11+
-      if: contains(matrix.java, '11') || contains(matrix.java, '17')
+      if: matrix.java > 8
       working-directory: ./commons-numbers-examples
       run: mvn -V --no-transfer-progress