We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac8a718 commit 43b8e31Copy full SHA for 43b8e31
1 file changed
.github/workflows/gitleaks.yaml
@@ -29,11 +29,16 @@ jobs:
29
run: |
30
sudo apt update
31
sudo apt install -y mono-complete
32
- - name: Install the dotnet
+ # - name: Install the dotnet
33
+ # if: steps.gitleaks.outcome != 'success'
34
+ # uses: actions/setup-dotnet@v3
35
+ # with:
36
+ # dotnet-version: '3.1.x'
37
+ - name: Install the dotnet SDK to a custom directory
38
if: steps.gitleaks.outcome != 'success'
- uses: actions/setup-dotnet@v3
- with:
- dotnet-version: '3.1.x'
39
+ run: |
40
+ mkdir -p $GITHUB_WORKSPACE/dotnet
41
+ curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --install-dir $GITHUB_WORKSPACE/dotnet --channel 3.1
42
- name: Install the report tool packages
43
44
0 commit comments