Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/haskell-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
11 changes: 6 additions & 5 deletions base16.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
10 changes: 10 additions & 0 deletions dependabot.yml
Original file line number Diff line number Diff line change
@@ -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"
Loading