From 0f464cd7a230d15cc7d0906fbd75fa5b26add23d Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 5 May 2024 14:34:12 -0500 Subject: [PATCH] github: update action versions Fixes deprecation warnings. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7259655..0568a5a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ jobs: runs-on: windows-2022 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true @@ -18,12 +18,12 @@ jobs: nuget restore - name: Setup MSBuild.exe - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v2 - name: Build DLL run: msbuild /property:Configuration=ReleaseDll /t:build KeeAgent.sln - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: KeeAgent.dll path: KeeAgent/bin/ReleaseDll/KeeAgent.dll @@ -34,7 +34,7 @@ jobs: - name: List PLGX run: ~\.nuget\packages\plgxtool\1.0.3\tools\PlgxTool.exe -l .\KeeAgent\bin\ReleasePlgx\KeeAgent.plgx - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: KeeAgent.plgx path: KeeAgent/bin/ReleasePlgx/KeeAgent.plgx