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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') # only run on "releases" (pushes to tags)
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: git show HEAD --format='%s%n%n%b' -s > .release_body
- uses: softprops/action-gh-release@v2
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: "20"
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
cabal: "latest"

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

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

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

- uses: ./
id: setup
Expand Down
Loading