Skip to content

Commit 623c748

Browse files
committed
Unbreak the CI
1 parent 3fa1d99 commit 623c748

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

.github/workflows/check-cabal-files.yml

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12+
- name: Workaround runner image issue
13+
if: runner.os == 'Linux'
14+
# https://github.com/actions/runner-images/issues/7061
15+
run: sudo chown -R $USER /usr/local/.ghcup
16+
1217
- name: Install Haskell
1318
uses: input-output-hk/setup-haskell@v1
1419
id: setup-haskell

.github/workflows/github-page.yml

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ jobs:
2828
SECP256K1_REF: ac83be33d0956faf6b7f61a60ab524ef7d6a473a
2929

3030
steps:
31+
- name: Workaround runner image issue
32+
if: runner.os == 'Linux'
33+
# https://github.com/actions/runner-images/issues/7061
34+
run: sudo chown -R $USER /usr/local/.ghcup
35+
3136
- name: Install Haskell
3237
uses: input-output-hk/setup-haskell@v1
3338
id: setup-haskell

.github/workflows/haskell.yml

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ jobs:
3939
SECP256K1_REF: ac83be33d0956faf6b7f61a60ab524ef7d6a473a
4040

4141
steps:
42+
- name: Workaround runner image issue
43+
if: runner.os == 'Linux'
44+
# https://github.com/actions/runner-images/issues/7061
45+
run: sudo chown -R $USER /usr/local/.ghcup
46+
4247
- name: Install Haskell
4348
uses: input-output-hk/setup-haskell@v1
4449
id: setup-haskell

.github/workflows/stylish-haskell.yml

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
cardano-submit-api
3434
3535
steps:
36+
- name: Workaround runner image issue
37+
if: runner.os == 'Linux'
38+
# https://github.com/actions/runner-images/issues/7061
39+
run: sudo chown -R $USER /usr/local/.ghcup
40+
3641
- name: Install Haskell
3742
uses: input-output-hk/setup-haskell@v1
3843
id: setup-haskell

0 commit comments

Comments
 (0)