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

update GitHub Action #352

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5

steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
with:
enable-stack: true
stack-version: 'latest'
Expand All @@ -50,7 +50,7 @@ jobs:
run: stack haddock --fast

- name: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
".stack-work"
Expand All @@ -73,7 +73,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
with:
enable-stack: true
stack-version: 'latest'
Expand All @@ -99,7 +99,7 @@ jobs:
run: stack haddock --fast --stack-yaml stack-ghc8_10.yaml

- name: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
".stack-work"
Expand All @@ -122,7 +122,7 @@ jobs:

steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v1
- uses: haskell-actions/setup@v2
with:
enable-stack: true
stack-version: 'latest'
Expand All @@ -148,7 +148,7 @@ jobs:
run: stack haddock --fast --stack-yaml stack-ghc8_8.yaml

- name: cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
".stack-work"
Expand Down