Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
#
# For more information, see https://github.com/haskell-CI/haskell-ci
#
# version: 0.19.20260331
# version: 0.19.20260624
#
# REGENDATA ("0.19.20260331",["github","cabal.project"])
# REGENDATA ("0.19.20260624",["github","cabal.project"])
#
name: Haskell-CI
on:
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
chmod a+x $HOME/.cabal/bin/cabal-plan
cabal-plan --version
- name: checkout
uses: actions/checkout@v5
uses: actions/checkout@v7
with:
path: source
- name: initial cabal.project for sdist
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER $ARG_TESTS $ARG_BENCH --dry-run all
cabal-plan
- name: restore cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v6
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
$CABAL v2-build $ARG_COMPILER --disable-tests --disable-benchmarks all
- name: save cache
if: always()
uses: actions/cache/save@v4
uses: actions/cache/save@v6
with:
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ github.sha }}
path: ~/.cabal/store
4 changes: 2 additions & 2 deletions binary-instances.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.2
name: binary-instances
version: 1.0.6
x-revision: 1
x-revision: 2
synopsis: Orphan instances for binary
description:
`binary-instances` defines orphan instances for types in some popular packages.
Expand Down Expand Up @@ -46,7 +46,7 @@ library
, tagged >=0.8.8 && <0.8.11

build-depends:
, aeson ^>=2.2.2.0
, aeson ^>=2.2.2.0 || ^>=2.3.0.0
, binary-orphans ^>=1.0.5
, hashable ^>=1.4.4.0 || ^>=1.5.0.0
, primitive ^>=0.9.0.0
Expand Down