You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xmlgraphics.apache.org by ss...@apache.org on 2023/03/15 08:38:03 UTC

[xmlgraphics-batik] branch temp/ssteiner-github created (now 644edd310)

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

ssteiner pushed a change to branch temp/ssteiner-github
in repository https://gitbox.apache.org/repos/asf/xmlgraphics-batik.git


      at 644edd310 Upgrade CI JDK

This branch includes the following new commits:

     new 644edd310 Upgrade CI JDK

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org


[xmlgraphics-batik] 01/01: Upgrade CI JDK

Posted by ss...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ssteiner pushed a commit to branch temp/ssteiner-github
in repository https://gitbox.apache.org/repos/asf/xmlgraphics-batik.git

commit 644edd3101d245331e5c548140f5ad8fa4c21fb1
Author: Simon Steiner <ss...@apache.org>
AuthorDate: Wed Mar 15 08:37:44 2023 +0000

    Upgrade CI JDK
---
 .github/workflows/maven.yml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 8cae7a40e..095eeb628 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -16,14 +16,12 @@ jobs:
 
     steps:
     - uses: actions/checkout@v3
-    - run: |
-        wget -O $RUNNER_TEMP/java_package.tar.gz -c --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-linux-x64.tar.gz
-    - uses: actions/setup-java@v3
+    - name: Set up JDK 8
+      uses: actions/setup-java@v3
       with:
-        distribution: 'jdkfile'
-        jdkFile: ${{ runner.temp }}/java_package.tar.gz
-        java-version: '8.0.0'
-        architecture: x64
+        java-version: '8'
+        distribution: 'temurin'
+        cache: maven
     - name: Build with Maven
       run: mvn -B package checkstyle:check --file pom.xml
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: commits-help@xmlgraphics.apache.org