Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps #160

Merged
merged 3 commits into from
Apr 27, 2024
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
- "9.4"
- "9.6"
- "9.8"
include:
- { os: macOS-latest, ghc: "9.8" }
# HsOpenSSL fails to build on Windows without openssl.
# - { os: windows-latest, ghc: "9.6" }
# TODO: HsOpenSSL fails to build on Windows and macOS without openssl.
# include:
# - { os: macOS-latest, ghc: "9.8" }
# - { os: windows-latest, ghc: "9.8" }

steps:
- uses: actions/checkout@v3
Expand All @@ -53,7 +53,7 @@ jobs:
cabal build --dry-run

- name: Restore cached dependencies
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: cache
env:
key: ${{ runner.os }}-ghc-${{ steps.setup.outputs.ghc-version }}-cabal-${{ steps.setup.outputs.cabal-version }}
Expand All @@ -66,7 +66,7 @@ jobs:
run: cabal build all --only-dependencies

- name: Save cached dependencies
uses: actions/cache/save@v3
uses: actions/cache/save@v4
if: ${{ steps.cache.outputs.cache-primary-key != steps.cache.outputs.cache-matched-key }}
with:
path: ${{ steps.setup.outputs.cabal-store }}
Expand All @@ -91,7 +91,7 @@ jobs:
include:
# GHC version must match https://www.stackage.org/nightly
- stack: "latest"
ghc: "9.6"
ghc: "9.8"

steps:
- uses: actions/checkout@v3
Expand All @@ -115,7 +115,7 @@ jobs:
stack config set system-ghc true --global
stack config set resolver nightly

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Cache
with:
path: |
Expand Down
4 changes: 2 additions & 2 deletions snap-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -106,11 +106,11 @@ Library
io-streams-haproxy >= 1.0 && < 1.1,
lifted-base >= 0.1 && < 0.3,
mtl >= 2.0 && < 2.4,
network >= 2.3 && < 3.2,
network >= 2.3 && < 4,
old-locale >= 1.0 && < 1.1,
snap-core >= 1.0 && < 1.1,
text >= 0.11 && < 2.2,
time >= 1.0 && < 1.13,
time >= 1.0 && < 2,
transformers >= 0.3 && < 0.7,
unix-compat >= 0.2 && < 0.8,
vector >= 0.7 && < 0.14
Expand Down
Loading