diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 3b741b2..c48d4f3 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -17,9 +17,9 @@ jobs: matrix: BUILD_PLATFORM: [x64, ARM64] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v2 - name: Build cv2pdb working-directory: ${{env.GITHUB_WORKSPACE}} run: msbuild /m /p:PlatformToolset=${{env.BUILD_PLATFORM_TOOLSET}} /p:Platform=${{matrix.BUILD_PLATFORM}} /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} @@ -28,7 +28,7 @@ jobs: run: msbuild /m /p:PlatformToolset=${{env.BUILD_PLATFORM_TOOLSET}} /p:Platform=Win32 /p:Configuration=${{env.BUILD_CONFIGURATION}} src/dumplines.vcxproj - name: Upload bin/ if: matrix.BUILD_PLATFORM == 'x64' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: bin path: bin @@ -37,7 +37,7 @@ jobs: needs: build steps: - name: Download bin/ - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: bin path: bin