···2929 # Steps represent a sequence of tasks that will be executed as part of the job
3030 steps:
3131 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3232- - uses: actions/checkout@v3
3232+ - uses: actions/checkout@v4
33333434 - name: Set up OCaml ${{ matrix.ocaml-compiler }}
3535- uses: ocaml/setup-ocaml@v2
3535+ uses: ocaml/setup-ocaml@v3
3636 with:
3737 # Version of the OCaml compiler to initialise
3838 ocaml-compiler: ${{ matrix.ocaml-compiler }}
39394040 - name: Install dependencies
4141- run: |
4242- opam install . --deps-only --with-test
4141+ run: opam install . --deps-only --with-test
43424443 - name: Build and test in release mode
4544 run: opam install . --with-test