From 421c5656114b662444d8413e8da2d5ace9e232e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9cate=20Kleidukos?= Date: Thu, 1 Jan 2026 19:16:43 +0100 Subject: [PATCH 1/3] Support GHC 9.12.2 and 9.14.1 --- base16.cabal | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/base16.cabal b/base16.cabal index 702effa..eee8e0e 100644 --- a/base16.cabal +++ b/base16.cabal @@ -24,8 +24,9 @@ tested-with: GHC ==9.4.8 || ==9.6.6 || ==9.8.2 - || ==9.10.1 - || ==9.12.1 + || ==9.10.3 + || ==9.12.2 + || ==9.14.1 source-repository head type: git @@ -50,7 +51,7 @@ library Data.ByteString.Base16.Internal.W16.ShortLoop build-depends: - base >=4.14 && <4.22 + base >=4.14 && <4.23 , bytestring >=0.11 && <0.13 , deepseq >=1.4.4.0 && <1.6 , primitive >=0.6 && <0.10 @@ -68,7 +69,7 @@ test-suite base16-tests hs-source-dirs: test main-is: Main.hs build-depends: - base >=4.14 && <4.22 + base >=4.14 && <4.23 , base16 , base16-bytestring >=1.0 , bytestring >=0.11 @@ -86,7 +87,7 @@ benchmark bench hs-source-dirs: benchmarks main-is: Base16Bench.hs build-depends: - base >=4.14 && <4.22 + base >=4.14 && <4.23 , base16 , base16-bytestring >=1.0 , bytestring >=0.11 From a7f76abb9eecd32e839c55ecc60a12a37c6baf64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9cate=20Kleidukos?= Date: Thu, 1 Jan 2026 19:19:32 +0100 Subject: [PATCH 2/3] Add dependabot for updating github actions --- dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 dependabot.yml diff --git a/dependabot.yml b/dependabot.yml new file mode 100644 index 0000000..dfd0e30 --- /dev/null +++ b/dependabot.yml @@ -0,0 +1,10 @@ +# Set update schedule for GitHub Actions + +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" From 236d523255948bd3694a4ebbea0c2c82155dfe14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9cate=20Kleidukos?= Date: Thu, 1 Jan 2026 19:22:11 +0100 Subject: [PATCH 3/3] Update actions/cache workflow --- .github/workflows/haskell-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index 302330d..96eccee 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -28,7 +28,7 @@ jobs: ghc-version: ${{ matrix.ghc }} - name: Update cabal package database run: cabal update - - uses: actions/cache@v2 + - uses: actions/cache@v3 name: Cache cabal stuff with: path: | @@ -66,7 +66,7 @@ jobs: ghc-version: 'latest' - name: Update cabal package database run: cabal update - - uses: actions/cache@v2 + - uses: actions/cache@v3 name: Cache cabal stuff with: path: |