You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2022/11/27 13:19:05 UTC

[ofbiz-framework] 03/03: Fixed: Update version of GitHub Action setup-java (OFBIZ-12714) (#567)

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

jleroux pushed a commit to branch release22.01
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git

commit 37f3e39b05472b3494cbd0b496c74716b2cae47c
Author: Daniel Watford <da...@watfordconsulting.com>
AuthorDate: Mon Nov 21 17:32:37 2022 +0000

    Fixed: Update version of GitHub Action setup-java (OFBIZ-12714) (#567)
    
    Resolves deprecation warning regarding version of Node.js used by the
    action, updating to Node.js v16, and also resolves the deprecation
    warning about the set-output workflow command.
---
 .github/workflows/gradle.yaml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml
index 7442472d8a..5f6525e5a6 100644
--- a/.github/workflows/gradle.yaml
+++ b/.github/workflows/gradle.yaml
@@ -33,9 +33,10 @@ jobs:
     steps:
     - uses: actions/checkout@v3
     - name: Set up JDK 11
-      uses: actions/setup-java@v1
+      uses: actions/setup-java@v3.6.0
       with:
         java-version: 11
+        distribution: zulu
     - name: Grant execute permission for gradlew
       run: chmod +x gradlew
     - name: Build with Gradle