From 0c0cf89ff0a8a1e5a0a8014d07182c782badc3c0 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Sun, 10 Mar 2024 01:29:52 +0300 Subject: [PATCH] Update codecov-action This fixes the error: ``` Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20. ``` --- .github/workflows/engine_unit-test.yml | 2 +- .github/workflows/functional_test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/engine_unit-test.yml b/.github/workflows/engine_unit-test.yml index 0d93937..fd34c36 100644 --- a/.github/workflows/engine_unit-test.yml +++ b/.github/workflows/engine_unit-test.yml @@ -38,7 +38,7 @@ jobs: coverage xml -i -o coverage_unittest.xml - name: Handle coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ./coverage_unittest.xml flags: engine_unit-test diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index 398f0cc..1033832 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -61,7 +61,7 @@ jobs: coverage xml -i -o coverage.xml - name: Handle coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ./coverage.xml flags: functional_test -- 2.31.1