From 112be415b483f44c6f1052e4fab5d9a9ba51766b Mon Sep 17 00:00:00 2001 From: Anatol Sevastsyan Date: Sun, 7 Jul 2024 06:38:09 +0300 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a78bbee2a..924db021a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,9 +18,19 @@ jobs: os: [macos-11, ubuntu-18.04, ubuntu-20.04, windows-2019] steps: - - uses: actions/checkout@v4 + - name: Checkout ubuntu-18.04 + if: matrix.os == 'ubuntu-18.04' + env: + ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true + uses: actions/checkout@v4 with: fetch-depth: 0 + + - name: Checkout + if: matrix.os != 'ubuntu-18.04' + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Submodule update shell: bash