From 18465ed51ccac78856006e8e7bc1e566b0285d51 Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Wed, 8 Jan 2025 13:34:27 +0000 Subject: [PATCH 1/2] Add x-maintenance-intent to opam files. --- ctypes-foreign.opam | 1 + ctypes.opam | 1 + 2 files changed, 2 insertions(+) diff --git a/ctypes-foreign.opam b/ctypes-foreign.opam index de335060..5e09da23 100644 --- a/ctypes-foreign.opam +++ b/ctypes-foreign.opam @@ -44,3 +44,4 @@ build: [ ["dune" "install" "-p" name "--create-install-files" name] ] dev-repo: "git+https://github.com/yallop/ocaml-ctypes.git" +x-maintenance-intent: ["(any).(any).(latest)"] diff --git a/ctypes.opam b/ctypes.opam index 67c35b20..3a7672b8 100644 --- a/ctypes.opam +++ b/ctypes.opam @@ -53,3 +53,4 @@ build: [ ["dune" "install" "-p" name "--create-install-files" name] ] dev-repo: "git+https://github.com/yallop/ocaml-ctypes.git" +x-maintenance-intent: ["(any).(any).(latest)"] From d185f74943c34fbd3ce48f4e540dfde36836e553 Mon Sep 17 00:00:00 2001 From: Jeremy Yallop Date: Wed, 8 Jan 2025 14:00:39 +0000 Subject: [PATCH 2/2] GitHub Actions: switch to ocaml/setup-ocaml@v3 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 65c8d7c1..bcb75ebd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,7 +57,7 @@ jobs: 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 }}