Skip to content

Commit 2db7198

Browse files
committed
Use ubuntu-latest for GitHub workflows
1 parent 9ee3912 commit 2db7198

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/haddock-pages.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99
jobs:
1010

1111
haddock:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
steps:
1414

1515
- name: Set up haskell
@@ -33,12 +33,13 @@ jobs:
3333
- name: Store generated API docs
3434
uses: actions/upload-pages-artifact@v3
3535
with:
36+
name: Haddock API docs
3637
path: ${{ env.HADDOCK_DIR }}
3738

3839
deploy:
3940
needs: haddock
4041
if: github.ref == 'refs/heads/main'
41-
runs-on: ubuntu-20.04
42+
runs-on: ubuntu-latest
4243
permissions:
4344
pages: write
4445
id-token: write

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88
steps:
99

1010
- name: Set up haskell

0 commit comments

Comments
 (0)