@@ -24,32 +24,32 @@ jobs:
2424 # disabling this for now
2525
2626 ocaml-compiler :
27- - 5.2.0
27+ - ocaml-base-compiler. 5.2.0
2828
2929 runs-on : ${{ matrix.os }}
3030
3131 steps :
3232 - name : Checkout code
33- uses : actions/checkout@v5
33+ uses : actions/checkout@v6
3434
3535 - name : Load opam cache when not Windows
3636 if : runner.os != 'Windows'
3737 id : opam-cache
38- uses : actions/cache/restore@v4
38+ uses : actions/cache/restore@v5
3939 with :
4040 path : ~/.opam
4141 key : opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }}
4242
4343 - name : Load opam cache when Windows
4444 if : runner.os == 'Windows'
4545 id : opam-cache-windows
46- uses : actions/cache/restore@v4
46+ uses : actions/cache/restore@v5
4747 with :
4848 path : _opam
4949 key : opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }}
5050
5151 - name : Use OCaml ${{ matrix.ocaml-compiler }}
52- uses : ocaml/setup-ocaml@v3.3.5
52+ uses : ocaml/setup-ocaml@v3
5353 with :
5454 ocaml-compiler : ${{ matrix.ocaml-compiler }}
5555 dune-cache : true
@@ -72,14 +72,14 @@ jobs:
7272 run : make jest
7373
7474 - name : Save cache when not Windows
75- uses : actions/cache/save@v4
75+ uses : actions/cache/save@v5
7676 if : steps.opam-cache.outputs.cache-hit != 'true' && runner.os != 'Windows'
7777 with :
7878 path : ~/.opam
7979 key : opam-${{ matrix.os }}-${{ matrix.ocaml-compiler }}-${{ hashFiles('**.opam') }}
8080
8181 - name : Save cache when Windows
82- uses : actions/cache/save@v4
82+ uses : actions/cache/save@v5
8383 if : steps.opam-cache-windows.outputs.cache-hit != 'true' && runner.os == 'Windows'
8484 with :
8585 path : _opam
0 commit comments