From 8a3e07f799d8c5fc703c7b0ff7c4d09107fe3efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 5 Feb 2024 01:24:37 +0100 Subject: [PATCH] Update GitHub Actions for Node 20 support (#376) https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/BuildBinaries.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/BuildBinaries.yml b/.github/workflows/BuildBinaries.yml index 9d003b82b..68ea5b21b 100644 --- a/.github/workflows/BuildBinaries.yml +++ b/.github/workflows/BuildBinaries.yml @@ -16,17 +16,17 @@ jobs: env: POWERSHELL_TELEMETRY_OPTOUT: 1 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: 'recursive' - - uses: microsoft/setup-msbuild@v1 + - uses: microsoft/setup-msbuild@v2 - name: Clear local NuGet cache (workaround for failed restores on windows-latest) run: dotnet nuget locals all --clear - name: Build run: msbuild BuildAllTargets.proj - name: Prepare artifacts run: rm Output\Binaries\* -vb -Recurse -Force -Include *.exp, *.idb, *.ilk, *.iobj, *.ipdb, *.lastbuildstate, *.lib, *.obj, *.res, *.tlog - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: NanaZip_All_Binaries_GitHubActions path: Output\Binaries