From 8def7fae724f98999686d7cd75a9e9dc81378d5c Mon Sep 17 00:00:00 2001 From: Antoine Beauchamp Date: Sun, 4 Aug 2024 09:28:07 -0400 Subject: [PATCH] Fixed the following warning: The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/upload-artifact@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ --- .github/workflows/build_linux.yml | 2 +- .github/workflows/build_windows.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_linux.yml b/.github/workflows/build_linux.yml index 4d2d3b4..c86fa7e 100644 --- a/.github/workflows/build_linux.yml +++ b/.github/workflows/build_linux.yml @@ -178,7 +178,7 @@ jobs: file_path: ./badge.json - name: Archive test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.3.5 with: name: unit-test-results path: build/bin/anyrtttl_unittest*.xml diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index c7dbb9e..df6d0fd 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -170,7 +170,7 @@ jobs: file_path: ./badge.json - name: Archive test results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.3.5 with: name: unit-test-results path: build\bin\${{env.Configuration}}\anyrtttl_unittest*.xml