46
46
uses : actions/checkout@v4
47
47
48
48
- name : Set-up OCaml
49
- uses : ocaml/setup-ocaml@v2
49
+ uses : ocaml/setup-ocaml@v3
50
50
with :
51
51
ocaml-compiler : " 5.2"
52
52
@@ -63,13 +63,13 @@ The actions are downloaded and run from the GitHub graph of repositories. The
63
63
workflow references an action using a ref.
64
64
65
65
> [!NOTE] Binding to a major version is the latest of that major version (e.g.
66
- > ` v2 ` = `2 .*`) Major versions should guarantee compatibility. A major version
66
+ > ` v3 ` = `3 .*`) Major versions should guarantee compatibility. A major version
67
67
> can add net new capabilities but should not break existing input compatibility
68
68
> or break existing workflows.
69
69
70
70
` ` ` yml
71
71
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
72
- uses: ocaml/setup-ocaml@v2
72
+ uses: ocaml/setup-ocaml@v3
73
73
# ^^^
74
74
with:
75
75
ocaml-compiler: ${{ matrix.ocaml-compiler }}
@@ -86,11 +86,11 @@ creating a tag.
86
86
` ` ` yml
87
87
steps:
88
88
# Reference the major version of a release (most recommended)
89
- - uses: ocaml/setup-ocaml@v2
89
+ - uses: ocaml/setup-ocaml@v3
90
90
# Reference a specific commit (most strict)
91
91
- uses: ocaml/setup-ocaml@<SHA>
92
92
# Reference a semver version of a release (not recommended)
93
- - uses: ocaml/setup-ocaml@v2 .0.0
93
+ - uses: ocaml/setup-ocaml@v3 .0.0
94
94
# Reference a branch (most dangerous - do not do this)
95
95
- uses: ocaml/setup-ocaml@master
96
96
` ` `
0 commit comments