You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2019/08/12 21:18:19 UTC

[maven-dependency-plugin] branch GITHUB_ACTIONS updated: Just using Maven Container.

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

khmarbaise pushed a commit to branch GITHUB_ACTIONS
in repository https://gitbox.apache.org/repos/asf/maven-dependency-plugin.git


The following commit(s) were added to refs/heads/GITHUB_ACTIONS by this push:
     new c206373  Just using Maven Container.
c206373 is described below

commit c206373b89a4555136123abc747222ea2d640ac5
Author: Karl Heinz Marbaise <kh...@apache.org>
AuthorDate: Mon Aug 12 23:18:06 2019 +0200

    Just using Maven Container.
---
 .github/workflows/maven.yml | 36 +-----------------------------------
 1 file changed, 1 insertion(+), 35 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index c704031..2fc684b 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -30,7 +30,7 @@ jobs:
   mdep_linux_11:
     name: Linux (OpenJDK 11)
     runs-on: ubuntu-latest
-    container: openjdk:11
+    container: maven:3.6.1-jdk-11-slim
     steps:
     - uses: actions/checkout@master
       with:
@@ -41,40 +41,6 @@ jobs:
       env:
        LC_ALL: en_US.UTF-8
 
-  mdep_linux_12:
-    name: Linux (OpenJDK 12)
-    runs-on: ubuntu-latest
-    container: openjdk:12
-    steps:
-    - uses: actions/checkout@master
-      with:
-        fetch-depth: 10
-    
-    - name: Build
-      run: |
-        mvn -V --no-transfer-progress -B clean verify -Prun-its
-        
-      shell: bash  
-      env:
-       LC_ALL: en_US.UTF-8
-
-  mdep_linux_13:
-    name: Linux (OpenJDK 13)
-    runs-on: ubuntu-latest
-    container: openjdk:13
-    steps:
-    - uses: actions/checkout@master
-      with:
-        fetch-depth: 10
-    
-    - name: Test
-      run: |
-        mvn -V --no-transfer-progress -B clean verify -Prun-its
-        
-      shell: bash
-      env:
-       LC_ALL: en_US.UTF-8
-  
   mdep_windows:
     name: Windows
     runs-on: windows-latest