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

CI: update OSes to latest versions #981

Merged
merged 2 commits into from
Apr 2, 2023
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macOS-11, windows-2022]
os: [ubuntu-22.04, macOS-12, windows-2022]
cabal: ["3.6"]
ghc:
- "8.6.5"
Expand All @@ -22,10 +22,10 @@ jobs:
- "9.2.5"
exclude:
# fails to build: "can't load framework: Cocoa (not found)"
- os: macOS-11
- os: macOS-12
ghc: 8.6.5
# fails to build: "can't load framework: Cocoa (not found)"
- os: macOS-11
- os: macOS-12
ghc: 8.8.4
# haskell/actions/setup fails to install this version because of chocolatey: https://github.com/haskell/actions/issues/129
- os: windows-2022
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
stack: ["2.9.3"]
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

sdist:
name: Cabal file is up-to-date
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
cabal: ["3.6"]
Expand Down