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 a31719d3d9bbbf3bde842a27ba072b4002fd9b32 Author: Daniel Watford <dan...@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 d71ef186a0..7442472d8a 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: