Skip to content

Commit

Permalink
Fix add-path warning in CI (#155)
Browse files Browse the repository at this point in the history
A newer version of the microsoft/setup-msbuild action has been released that is not vulnerable to [CVE-2020-15228](GHSA-mfwh-5m23-j46w): microsoft/setup-msbuild#26

This PR changes the version pinning to v1 instead of v1.0.0, so that the latest v1 will be used.
  • Loading branch information
jgiannuzzi authored Oct 8, 2020
1 parent 2ec6554 commit 6acc6f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
dotnet-version: 3.1.100
- name: Setup MSBuild
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v1.0.0
uses: microsoft/setup-msbuild@v1
- name: Compile native ParquetSharp library (Unix)
if: runner.os == 'Linux' || runner.os == 'macOS'
run: ./build_unix.sh
Expand Down

0 comments on commit 6acc6f4

Please sign in to comment.