Skip to content

Commit a9a629d

Browse files
committed
Switch to ocaml-opam/opam-repository-mingw
1 parent 8ff1130 commit a9a629d

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to
88

99
## [unreleased]
1010

11+
### Changed
12+
13+
- Use ocaml-opam/opam-repository-mingw instead of fdopen/opam-repository-mingw.
14+
1115
## [2.0.11]
1216

1317
### Changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/setup-ocaml/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const platform = getPlatform();
7777
const defaultRepository =
7878
platform !== Platform.Win32
7979
? "https://github.com/ocaml/opam-repository.git"
80-
: "https://github.com/fdopen/opam-repository-mingw.git#opam2";
80+
: "https://github.com/ocaml-opam/opam-repository-mingw.git#sunset";
8181

8282
export const OPAM_REPOSITORIES: [string, string][] = repositories_yaml
8383
? Object.entries(repositories_yaml).reverse()

src/setup-ocaml/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function unique(array: string[]) {
2626
async function getAllCompilerVersions(): Promise<string[]> {
2727
const octokit = github.getOctokit(GITHUB_TOKEN);
2828
const platform = getPlatform();
29-
const owner = platform === Platform.Win32 ? "fdopen" : "ocaml";
29+
const owner = platform === Platform.Win32 ? "ocaml-opam" : "ocaml";
3030
const repo =
3131
platform === Platform.Win32 ? "opam-repository-mingw" : "opam-repository";
3232
const prefix =

0 commit comments

Comments
 (0)