Skip to content

Commit 87c7b7f

Browse files
authored
Fix CI w.r.t. opam & gha deps
2 parents c8174f8 + dcb59ce commit 87c7b7f

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/publish-artifacts.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,20 @@ jobs:
4242
# Not the default gh download-artifact action, which doesn't work
4343
# between workflows
4444
- name: Get previous artifact learn-ocaml-www
45-
uses: dawidd6/action-download-artifact@v6
45+
uses: dawidd6/action-download-artifact@v8
4646
with:
4747
workflow: ${{ github.event.workflow_run.workflow_id }}
4848
name: learn-ocaml-www
4949
path: artifacts/
5050
skip_unpack: true
5151
- name: Get previous artifact learn-ocaml-linux-x86_64
52-
uses: dawidd6/action-download-artifact@v6
52+
uses: dawidd6/action-download-artifact@v8
5353
with:
5454
workflow: ${{ github.event.workflow_run.workflow_id }}
5555
name: learn-ocaml-linux-x86_64
5656
path: artifacts/linux-x86_64
5757
- name: Get previous artifact learn-ocaml-darwin-x86_64
58-
uses: dawidd6/action-download-artifact@v6
58+
uses: dawidd6/action-download-artifact@v8
5959
with:
6060
workflow: ${{ github.event.workflow_run.workflow_id }}
6161
name: learn-ocaml-darwin-x86_64

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v4
4747
- name: Download workflow artifacts
4848
# cf. https://github.com/actions/download-artifact/issues/3
49-
uses: dawidd6/action-download-artifact@v6
49+
uses: dawidd6/action-download-artifact@v8
5050
with:
5151
workflow: static-builds.yml
5252
workflow_conclusion: success

.github/workflows/static-builds.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
'${{ matrix.arch_dir }}'
3737
docker rm "$container"
3838
- name: 'Upload ${{ matrix.arch_dir }}'
39-
uses: actions/upload-artifact@v3
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: ${{ matrix.arch_dir }}
4242
path: ${{ matrix.arch_dir }}/*
@@ -65,7 +65,7 @@ jobs:
6565
mkdir -p ${{ matrix.artifact }}
6666
cp learn-ocaml learn-ocaml-server learn-ocaml-client ${{ matrix.artifact }}
6767
- name: Upload static binaries
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: ${{ matrix.artifact }}
7171
path: ${{ matrix.artifact }}/*
@@ -117,7 +117,7 @@ jobs:
117117
mkdir -p ${{ matrix.artifact }}
118118
cp _build/install/default/bin/learn-ocaml{,-server,-client} ${{ matrix.artifact }}
119119
- name: Upload static binaries
120-
uses: actions/upload-artifact@v3
120+
uses: actions/upload-artifact@v4
121121
with:
122122
name: ${{ matrix.artifact }}
123123
path: ${{ matrix.artifact }}/*

learn-ocaml-client.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ depends: [
4646
"ssl" {>= "0.5.12"}
4747
"vg"
4848
"asak" {>= "0.5"}
49-
"js_of_ocaml" {>= "5.0.0"}
49+
"js_of_ocaml" {>= "5.0.0" & < "6.0.0"}
5050
]
5151
build: [
5252
["dune" "build" "@install" "-p" name "-j" jobs]

learn-ocaml.opam

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ depends: [
3535
"easy-format" {>= "1.3.0" }
3636
"ezjsonm"
3737
"ipaddr" {>= "2.9.0" }
38-
"js_of_ocaml" {>= "5.0.0"}
39-
"js_of_ocaml-compiler" {>= "5.0.0"}
38+
"js_of_ocaml" {>= "5.0.0" & < "6.0.0"}
39+
"js_of_ocaml-compiler" {>= "5.0.0" & < "6.0.0"}
4040
"js_of_ocaml-lwt"
4141
"js_of_ocaml-ppx"
4242
"js_of_ocaml-toplevel"

0 commit comments

Comments
 (0)