You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by da...@apache.org on 2022/11/21 17:01:33 UTC

[ofbiz-framework] branch trunk updated: Fixed: Update version of GitHub Action used to checkout sources during CI build (OFBIZ-12714)

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

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


The following commit(s) were added to refs/heads/trunk by this push:
     new 0ea9407252 Fixed: Update version of GitHub Action used to checkout sources during CI build (OFBIZ-12714)
0ea9407252 is described below

commit 0ea9407252f4942731356f3cdb14e4bded19b0b3
Author: Daniel Watford <da...@watfordconsulting.com>
AuthorDate: Mon Nov 21 16:45:05 2022 +0000

    Fixed: Update version of GitHub Action used to checkout sources during CI build (OFBIZ-12714)
    
    GitHub Actions have deprecated use of Node.js version 12, as used by
    version 2 of the checkout action. Upgraded to version 3 of the action
    which uses Node.js 16 by default.
---
 .github/workflows/gradle.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/gradle.yaml b/.github/workflows/gradle.yaml
index 8a2006f2d4..d3ee1a5f18 100644
--- a/.github/workflows/gradle.yaml
+++ b/.github/workflows/gradle.yaml
@@ -31,7 +31,7 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
-    - uses: actions/checkout@v2
+    - uses: actions/checkout@v3
     - name: Set up JDK 11
       uses: actions/setup-java@v1
       with: