Workaround ghcup runner issue (#3483)

* Workaround ghcup runner issue

* Try this
This commit is contained in:
Michael Peyton Jones 2023-02-08 17:51:31 +00:00 committed by GitHub
parent b8205fa76c
commit d48cc0f831
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,6 +23,14 @@ inputs:
runs:
using: "composite"
steps:
- name: Workaround runner image issue
if: runner.os == 'Linux'
# https://github.com/actions/runner-images/issues/7061
run: |
sudo mkdir -p /usr/local/.ghcup
sudo chown -R $USER /usr/local/.ghcup
shell: bash
- uses: haskell/actions/setup@v2.3.3
id: HaskEnvSetup
with: