diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml index c26f4aa..6c9b64c 100644 --- a/.github/workflows/win.yml +++ b/.github/workflows/win.yml @@ -1,9 +1,9 @@ name: Build (Windows) on: push: - branches: [ master, ci-* ] + branches: [ master ] pull_request: - branches: [ master, ci-* ] + branches: [ master ] jobs: build: @@ -12,10 +12,10 @@ jobs: strategy: fail-fast: false matrix: - ghc: ['9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2', '8.0'] + ghc: ['9.8', '9.6', '9.4', '9.2', '9.0', '8.10', '8.8', '8.6', '8.4', '8.2', '8.0'] steps: - - uses: actions/checkout@v3 - - uses: haskell/actions/setup@v2 + - uses: actions/checkout@v4 + - uses: haskell-actions/setup@v2 with: ghc-version: ${{ matrix.ghc }} - run: cabal build diff --git a/windns.cabal b/windns.cabal index 36f06d4..5ff7635 100644 --- a/windns.cabal +++ b/windns.cabal @@ -2,6 +2,7 @@ cabal-version: 1.12 name: windns version: 0.1.0.1 +x-revision: 7 synopsis: Domain Name Service (DNS) lookup via the /dnsapi.dll standard library X-SPDX-License-Identifier: GPL-2.0-or-later license: GPL-2 @@ -51,8 +52,8 @@ library Trustworthy build-depends: base >= 4.5.1.0 && < 5 - , bytestring >= 0.9.2 && < 0.12 - , deepseq >= 1.3.0.0 && < 1.5 + , bytestring >= 0.9.2 && < 1 + , deepseq >= 1.3.0.0 && < 2 build-tools: hsc2hs >= 0.67 && < 0.69 @@ -64,4 +65,3 @@ library if !(os(windows) || flag(allow-non-windows)) build-depends:base<0 -