We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e544042 commit e2607deCopy full SHA for e2607de
.github/workflows/gitleaks.yaml
@@ -5,7 +5,7 @@ on:
5
jobs:
6
scan:
7
name: gitleaks
8
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
9
steps:
10
- name: Checkout
11
uses: actions/checkout@v3
@@ -29,9 +29,10 @@ jobs:
29
uses: actions/setup-dotnet@v3
30
with:
31
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
+ - name: Install libssl and libicu (for .NET Core 3.1 compatibility)
+ sudo apt-get update
+ sudo apt-get install -y libssl1.1 || sudo apt-get install -y libssl3
35
+ sudo apt-get install -y libicu66
36
- name: Run Report Tool
37
if: steps.gitleaks.outcome != 'success'
38
run: |
0 commit comments