Skip to content

Commit

Permalink
Merge pull request #95 from dscho/update-github-actions
Browse files Browse the repository at this point in the history
Update GitHub actions
  • Loading branch information
rainers authored Dec 11, 2024
2 parents e3e9c45 + 3288946 commit 399abbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 399abbe

Please sign in to comment.