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 <[email protected]> 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/[email protected] with: java-version: 11 + distribution: zulu - name: Grant execute permission for gradlew run: chmod +x gradlew - name: Build with Gradle

