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
26 changes: 13 additions & 13 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "20"
node-version: "24"
cache: "npm"
cache-dependency-path: package-lock.json
- run: npm ci --prefer-offline --no-audit --progress=false
Expand Down Expand Up @@ -88,21 +88,21 @@ jobs:

include:

# Future macos
# Other macos

- os: macos-15
- os: macos-15-intel
plan:
ghc: latest
cabal: latest
cabal_update: "true"

# Some previously recommended releases of ghc with supported cabal

- os: macos-13
# GHC 9.0 does not work on macos-14 (LLVM problem #77)
- os: macos-14
plan:
ghc: "9.0"
cabal: "3.10"
ghc: latest
cabal: latest
cabal_update: "true"

# Some previously recommended releases of ghc with supported cabal

- os: ubuntu-latest
plan:
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
cabal: "latest"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: ./
id: setup
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./
id: setup
env:
Expand All @@ -274,7 +274,7 @@ jobs:
# test latest and recommended version of stack

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: ./
id: setup
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ E.g., `8.10` will be resolved to `8.10.7`, and so will `8`.
- `latest` (default)
- `9.12.2` `9.12`
- `9.12.1`
- `9.10.2` `9.10`
- `9.10.3`
- `9.10.3` `9.10`
- `9.10.2`
- `9.10.1`
- `9.8.4` `9.8`
- `9.8.2`
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ outputs:
stack-root:
description: 'The path to the stack root (equal to the STACK_ROOT environment variable if it is set; otherwise an OS-specific default)'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
Loading