Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,11 @@ jobs:
# repository so APT verifies the package via GPG instead of a plain wget download.
- name: Install OpenSSL 1.1 for .NET 5.0
run: |
echo "deb https://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
# [trusted=yes] skips GPG signature verification — the focal Ubuntu archive
# signing key is not always present on newer GitHub-hosted runners, which
# caused the apt source to be silently ignored and 'libssl1.1' to fail with
# 'has no installation candidate'.
echo "deb [trusted=yes] https://security.ubuntu.com/ubuntu focal-security main" | sudo tee /etc/apt/sources.list.d/focal-security.list
Comment on lines +330 to +334
sudo apt-get update -q
sudo apt-get install --yes libssl1.1
Comment on lines +330 to 336
sudo rm /etc/apt/sources.list.d/focal-security.list
Expand Down
Loading