We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdfd78d commit f5fb07fCopy full SHA for f5fb07f
1 file changed
.github/workflows/dotnet.yml
@@ -10,11 +10,17 @@ jobs:
10
build:
11
12
# runs-on: self-hosted
13
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
14
timeout-minutes: 4320
15
16
steps:
17
- uses: actions/checkout@v2
18
+ - name: Install OpenSSL 1.1
19
+ run: |
20
+ sudo apt-get update
21
+ sudo apt-get install -y ca-certificates
22
+ sudo add-apt-repository "deb http://security.ubuntu.com/ubuntu focal-security main"
23
+ sudo apt-get install -y libssl1.1 libssl-dev
24
- name: Setup .NET
25
uses: actions/setup-dotnet@v1
26
with:
0 commit comments