Skip to content

Commit e0bc53a

Browse files
fix ocaml version in gh actions
1 parent 5b8625e commit e0bc53a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/odoc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
- name: Checkout tree
1616
uses: actions/checkout@v4
1717

18-
- name: Set-up OCaml 5.3.0
19-
uses: ocaml/setup-ocaml@v2
18+
- name: Set-up OCaml 5
19+
uses: ocaml/setup-ocaml@v3
2020
with:
21-
ocaml-compiler: "5.3.0"
21+
ocaml-compiler: 5
2222
# disable cache, otherwise generated documentation is missing files
2323
dune-cache: false
2424

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os:
1818
- ubuntu-latest
1919
ocaml-compiler:
20-
- "5.3.0"
20+
- 5
2121

2222
runs-on: ${{ matrix.os }}
2323

@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v3
2727

2828
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
29-
uses: ocaml/setup-ocaml@v2
29+
uses: ocaml/setup-ocaml@v3
3030
with:
3131
ocaml-compiler: ${{ matrix.ocaml-compiler }}
3232
dune-cache: true

0 commit comments

Comments
 (0)