From 2aedc20c180d02a4238ef38973b35264f9aee6cc Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 17 Aug 2023 11:33:13 -0700 Subject: [PATCH] Try to workaround https://github.com/swift-actions/setup-swift/issues/591 Try to suppress random gpg failures --- .github/workflows/format-check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/format-check.yml b/.github/workflows/format-check.yml index ff85cadd7..2b190f92e 100644 --- a/.github/workflows/format-check.yml +++ b/.github/workflows/format-check.yml @@ -27,6 +27,8 @@ jobs: uses: actions/checkout@v3 - run: git config --global core.autocrlf input + # possible workaround for https://github.com/swift-actions/setup-swift/issues/591 + - run: sudo apt update; sudo apt install ca-certificates - name: Setup swift uses: swift-actions/setup-swift@v1