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

Upgrade to GHC 9.4.8 and HLS 2.5.0.0 #73

Merged
merged 3 commits into from
Jan 10, 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
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"directory": "/",
"package-ecosystem": "github-actions",
"schedule": {
"interval": "daily"
"interval": "weekly"
}
}
],
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"include": [
{
"arch": "amd64",
"ghc": "9.4.7"
"ghc": "9.4.8"
},
{
"arch": "amd64",
Expand All @@ -41,7 +41,7 @@
},
{
"arch": "arm64",
"ghc": "9.4.7"
"ghc": "9.4.8"
},
{
"arch": "arm64",
Expand Down Expand Up @@ -83,7 +83,7 @@
"strategy": {
"matrix": {
"ghc": [
"9.4.7",
"9.4.8",
"9.6.3",
"9.8.1"
]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ RUN \

# Install HLS.

ARG HLS_VERSION=2.4.0.0
ARG HLS_VERSION=2.5.0.0
RUN \
set -o errexit -o xtrace; \
if test -n "$HLS_VERSION"; then \
Expand Down
4 changes: 2 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
This Docker image provides a Haskell development environment with the following tools:

- [GHCup](https://www.haskell.org/ghcup/) version 0.1.20.0
- [GHC](https://www.haskell.org/ghc/) version 9.8.1, 9.6.3, or 9.4.7
- [GHC](https://www.haskell.org/ghc/) version 9.8.1, 9.6.3, or 9.4.8
- [Cabal](https://www.haskell.org/cabal/) version 3.10.2.0
- [Stack](https://docs.haskellstack.org/en/stable/) version 2.13.1
- [HLS](https://haskell-language-server.readthedocs.io/en/latest/) version 2.4.0.0
- [HLS](https://haskell-language-server.readthedocs.io/en/latest/) version 2.5.0.0

## Usage

Expand Down