From 5ae72551d9d1a408d8bf81e646bde2106caa3637 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 4 Apr 2024 23:38:36 +0200 Subject: [PATCH] GHA: on macOS remove $HOME/.curlrc A recent image upgrade added a $HOME/.curlrc by default using --ipv4. Ref: https://github.com/actions/runner-images/pull/9586 Fixes #13284 Closes #13285 --- .github/workflows/macos.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 7585f024d9..1d5f2a9e32 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -167,6 +167,9 @@ jobs: - uses: actions/checkout@v4 + - run: rm -f $HOME/.curlrc + name: remove $HOME/.curlrc + - run: autoreconf -fi name: 'autoreconf'