Skip to content

Commit e2607de

Browse files
Update gitleaks.yaml
1 parent e544042 commit e2607de

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/gitleaks.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
jobs:
66
scan:
77
name: gitleaks
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-20.04
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v3
@@ -29,9 +29,10 @@ jobs:
2929
uses: actions/setup-dotnet@v3
3030
with:
3131
dotnet-version: '3.1.x'
32-
- name: Install libssl
33-
if: steps.gitleaks.outcome != 'success'
34-
run: sudo apt-get install -y libssl1.1 || sudo apt-get install -y libssl3
32+
- name: Install libssl and libicu (for .NET Core 3.1 compatibility)
33+
sudo apt-get update
34+
sudo apt-get install -y libssl1.1 || sudo apt-get install -y libssl3
35+
sudo apt-get install -y libicu66
3536
- name: Run Report Tool
3637
if: steps.gitleaks.outcome != 'success'
3738
run: |

0 commit comments

Comments
 (0)