From db2ae5833eb9f6669ee01537b27b986eaa53e6fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 15:21:24 +0000 Subject: [PATCH 1/2] Bump ocaml/setup-ocaml from 2 to 3 Bumps [ocaml/setup-ocaml](https://github.com/ocaml/setup-ocaml) from 2 to 3. - [Release notes](https://github.com/ocaml/setup-ocaml/releases) - [Changelog](https://github.com/ocaml/setup-ocaml/blob/master/CHANGELOG.md) - [Commits](https://github.com/ocaml/setup-ocaml/compare/v2...v3) --- updated-dependencies: - dependency-name: ocaml/setup-ocaml dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92cdaf2..edb7137 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,7 +63,7 @@ jobs: - name: Check out code uses: actions/checkout@v4 - name: Use OCaml ${{ matrix.ocaml-compiler }} - uses: ocaml/setup-ocaml@v2 + uses: ocaml/setup-ocaml@v3 with: ocaml-compiler: ${{ matrix.ocaml-compiler }} - run: opam install . --deps-only --with-test From bcdc238ab9052a69b9079b2464bf3f37bc4b3cdb Mon Sep 17 00:00:00 2001 From: Yusuke Miyazaki Date: Sat, 23 Nov 2024 22:23:58 +0900 Subject: [PATCH 2/2] Update exclude list in matrix --- .github/workflows/ci.yml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edb7137..a895d53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: - 5.1.x - 5.2.x exclude: + # See https://github.com/ocaml/setup-ocaml?tab=readme-ov-file#ocaml-compiler-support-matrix - os: macos-latest ocaml-compiler: 4.03.x - os: macos-latest @@ -53,11 +54,25 @@ jobs: - os: macos-latest ocaml-compiler: 4.11.x - os: windows-latest - ocaml-compiler: 5.0.x + ocaml-compiler: 4.03.x + - os: windows-latest + ocaml-compiler: 4.04.x + - os: windows-latest + ocaml-compiler: 4.05.x + - os: windows-latest + ocaml-compiler: 4.06.x - os: windows-latest - ocaml-compiler: 5.1.x + ocaml-compiler: 4.07.x + - os: windows-latest + ocaml-compiler: 4.08.x + - os: windows-latest + ocaml-compiler: 4.09.x + - os: windows-latest + ocaml-compiler: 4.10.x + - os: windows-latest + ocaml-compiler: 4.11.x - os: windows-latest - ocaml-compiler: 5.2.x + ocaml-compiler: 4.12.x runs-on: ${{ matrix.os }} steps: - name: Check out code