Skip to content

Commit ec1082f

Browse files
committed
upgrade fourmolu in github actions
1 parent f237b25 commit ec1082f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/check-fourmolu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
shell: bash
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Run fourmolu
19-
uses: haskell-actions/run-fourmolu@v9
19+
uses: haskell-actions/run-fourmolu@v11
2020
with:
21-
version: "0.10.1.0"
21+
version: "0.17.0.0"

cardano-db/src/Cardano/Db/Types.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ instance ToJSON Ada where
8383
-- `Number` results in it becoming `7.3112484749601107e10` while the old explorer is returning `73112484749.601107`
8484
toEncoding (Ada ada) =
8585
unsafeToEncoding $
86-
Builder.string8 $ -- convert ByteString to Aeson's -- convert ByteString to Aeson's -- convert ByteString to Aeson's -- convert ByteString to Aeson's
86+
Builder.string8 $ -- convert ByteString to Aeson's
8787
showFixed True ada -- convert String to ByteString using Latin1 encoding
8888
-- convert Micro to String chopping off trailing zeros
8989

0 commit comments

Comments
 (0)