File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,16 @@ jobs:
29
29
run : |
30
30
sudo apt update
31
31
sudo apt install -y mono-complete
32
- - name : Install the dotnet
32
+ # - 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
33
38
if : steps.gitleaks.outcome != 'success'
34
- uses : actions/setup-dotnet@v3
35
- with :
36
- 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
37
42
- name : Install the report tool packages
38
43
if : steps.gitleaks.outcome != 'success'
39
44
run : |
You can’t perform that action at this time.
0 commit comments