Skip to content

Commit 8311c22

Browse files
authoredMar 12, 2024
chore: use new haskell actions (#21)
1 parent 4ea1086 commit 8311c22

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
- name: Setup Haskell env
16-
uses: haskell/actions/setup@v2
16+
uses: haskell-actions/setup@v2
1717
with:
1818
enable-stack: false
1919
- run: make publish

‎.github/workflows/test.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
with:
1919
token: ${{ secrets.GITHUB_TOKEN }}
2020
- name: Setup Haskell env
21-
uses: haskell/actions/setup@v2
21+
uses: haskell-actions/setup@v2
2222
with:
2323
enable-stack: false
2424
- name: 'Set up HLint'
25-
uses: haskell/actions/hlint-setup@v2
25+
uses: haskell-actions/hlint-setup@v2
2626
- name: Build Haskell Host SDK
2727
run: |
2828
uname -a
@@ -34,13 +34,13 @@ jobs:
3434
LD_LIBRARY_PATH=/usr/local/lib cabal test
3535
3636
- name: 'Run HLint'
37-
uses: haskell/actions/hlint-run@v2
37+
uses: haskell-actions/hlint-run@v2
3838
with:
3939
path: src/
4040
fail-on: warning
4141

4242
- name: 'Run HLint'
43-
uses: haskell/actions/hlint-run@v2
43+
uses: haskell-actions/hlint-run@v2
4444
with:
4545
path: manifest/
4646
fail-on: warning

0 commit comments

Comments
 (0)
Please sign in to comment.