Skip to content

Commit

Permalink
fix: pin sonarscanner version (#712)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutiburman authored Jan 11, 2024
1 parent 4847b68 commit 91c0f7c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:
TWILIO_FROM_NUMBER: ${{ secrets.TWILIO_FROM_NUMBER }}
TWILIO_TO_NUMBER: ${{ secrets.TWILIO_TO_NUMBER }}
run: |
dotnet tool install --global dotnet-sonarscanner
dotnet tool install --global dotnet-sonarscanner --version 5.5.3
make cover
import-certificate:
runs-on: windows-latest
steps:
Expand All @@ -56,14 +56,15 @@ jobs:
New-Item -ItemType directory -Path certificate
Set-Content -Path certificate\certificate.txt -Value '${{ secrets.CODE_SIGNING_CERTIFICATE }}'
certutil -decode certificate\certificate.txt certificate\certificate.pfx
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: certificate.pfx
path: certificate\certificate.pfx
retention-days: 1



deploy:
name: Deploy
if: success() && github.ref_type == 'tag'
Expand All @@ -74,7 +75,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Download code signing certificate
uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 91c0f7c

Please sign in to comment.