We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f67c00 commit 562bbbcCopy full SHA for 562bbbc
1 file changed
packages/setup-ocaml/src/opam.ts
@@ -20,7 +20,7 @@ import {
20
} from "./unix.js";
21
22
export const latestOpamRelease = (async () => {
23
- const semverRange = ALLOW_PRERELEASE_OPAM ? "*" : "<2.6.0";
+ const semverRange = ALLOW_PRERELEASE_OPAM ? "*" : ">=2.5.0 < 2.5.1";
24
const octokit = github.getOctokit(GITHUB_TOKEN, undefined, retry);
25
const { data: releases } = await octokit.rest.repos.listReleases({
26
owner: "ocaml",
0 commit comments