From d7002aed3205b1ed45142f699c471cf00d193225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonin=20D=C3=A9cimo?= Date: Wed, 2 Apr 2025 20:28:31 +0200 Subject: [PATCH] GHA: ocaml-compiler versions as strings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise, there's a bug where they get interpreted as floats… (it seems the bug doesn't appear here). Using strings is safer in general. Update from OCaml 4.12 to 4.14. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4af6156..e44118b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,9 +16,9 @@ jobs: # - macos-latest # build issues with `ar` (!!!) #- windows-latest # certificate problem ocaml-compiler: - - 4.08 - - 4.12 - - 5.03 + - '4.08' + - '4.14' + - '5.3' runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2