Skip to content

Commit 892a69b

Browse files
new update
1 parent c35ba60 commit 892a69b

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/codeql.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
steps:
2626
- name: Checkout repository
2727
uses: actions/checkout@v3
28-
29-
- name: Install libssl-dev
30-
run: sudo apt-get install -y libssl-dev
3128

3229
- name: Install dependencies
3330
run: |
@@ -37,7 +34,9 @@ jobs:
3734
libicu-dev \
3835
ca-certificates \
3936
openssl \
40-
curl
37+
curl \
38+
pkg-config \
39+
zlib1g-dev
4140
4241
- name: Check OpenSSL installation
4342
run: |
@@ -55,6 +54,14 @@ jobs:
5554
- name: Display dotnet version
5655
run: dotnet --version
5756

57+
- name: Manually Set LD_LIBRARY_PATH
58+
run: |
59+
echo "/usr/lib/ssl" >> $GITHUB_ENV
60+
export LD_LIBRARY_PATH=/usr/lib/ssl:$LD_LIBRARY_PATH
61+
62+
- name: Run dotnet restore with verbose logging
63+
run: dotnet restore --verbosity detailed
64+
5865
- name: Initialize CodeQL
5966
uses: github/codeql-action/init@v2
6067
with:

0 commit comments

Comments
 (0)