Skip to content

Commit d48cc0f

Browse files
authored
Workaround ghcup runner issue (#3483)
* Workaround ghcup runner issue * Try this
1 parent b8205fa commit d48cc0f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/actions/setup-build/action.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ inputs:
2323
runs:
2424
using: "composite"
2525
steps:
26+
- name: Workaround runner image issue
27+
if: runner.os == 'Linux'
28+
# https://github.com/actions/runner-images/issues/7061
29+
run: |
30+
sudo mkdir -p /usr/local/.ghcup
31+
sudo chown -R $USER /usr/local/.ghcup
32+
shell: bash
33+
2634
- uses: haskell/actions/[email protected]
2735
id: HaskEnvSetup
2836
with:

0 commit comments

Comments
 (0)