Skip to content

Commit

Permalink
Install Visual Studio SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
semalaiappan committed Feb 19, 2024
1 parent 6859afb commit 22f2e23
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/Security Vulnerability Check on Release Tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@ jobs:
repository: Ed-Fi-Alliance-OSS/Ed-Fi-ODS
path: Ed-Fi-ODS/
ref: ${{ matrix.tag }}
- name: Install Visual Studio SDK
shell: pwsh
run: |
$visualStudioVersion = "2019"
$installerUrl = "https://aka.ms/vs/$visualStudioVersion/release/vs_buildtools.exe"
# Download the Visual Studio Build Tools installer
Invoke-WebRequest -Uri $installerUrl -OutFile vs_buildtools.exe
# Run the installer silently
Start-Process -FilePath vs_buildtools.exe -ArgumentList "--quiet --wait --norestart" -Wait
- name: Execute vulnerability
working-directory: ./Ed-Fi-ODS/
Expand Down

0 comments on commit 22f2e23

Please sign in to comment.