···2020 os:
2121 - ubuntu-latest
2222 ocaml-compiler:
2323- - 5.0.x
2323+ - 5.2.x
2424 # The type of runner that the job will run on
2525 runs-on: ${{ matrix.os }}
26262727 # Steps represent a sequence of tasks that will be executed as part of the job
2828 steps:
2929 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030- - uses: actions/checkout@v3
3030+ - uses: actions/checkout@v4
31313232 - name: Set up OCaml ${{ matrix.ocaml-compiler }}
3333- uses: ocaml/setup-ocaml@v2
3333+ uses: ocaml/setup-ocaml@v3
3434 with:
3535 # Version of the OCaml compiler to initialise
3636 ocaml-compiler: ${{ matrix.ocaml-compiler }}
37373838 - name: Install dependencies
3939- run: |
4040- opam install . --deps-only --with-test
3939+ run: opam install . --deps-only --with-test
41404241 - name: Build and test in release mode
4342 run: opam exec -- make js