Skip to content

Commit 8cdbeb3

Browse files
committed
Update docs
Signed-off-by: Sora Morimoto <sora@morimoto.io>
1 parent aab8e20 commit 8cdbeb3

File tree

7 files changed

+17
-20
lines changed

7 files changed

+17
-20
lines changed

EXAMPLES.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@v4
3737

3838
- name: Set-up OCaml
39-
uses: ocaml/setup-ocaml@v2
39+
uses: ocaml/setup-ocaml@v3
4040
with:
4141
ocaml-compiler: "5.2"
4242

@@ -71,7 +71,7 @@ steps:
7171
uses: actions/checkout@v4
7272
7373
- name: Set-up OCaml
74-
uses: ocaml/setup-ocaml@v2
74+
uses: ocaml/setup-ocaml@v3
7575
with:
7676
ocaml-compiler: ${{ matrix.ocaml-compiler }}
7777
opam-local-packages: |
@@ -104,7 +104,7 @@ steps:
104104
run: apt-get --yes install bubblewrap curl darcs gcc git m4 make mercurial patch rsync sudo unzip
105105
106106
- name: Set-up OCaml
107-
uses: ocaml/setup-ocaml@v2
107+
uses: ocaml/setup-ocaml@v3
108108
with:
109109
ocaml-compiler: "5.2"
110110
cache-prefix: v1-${{ matrix.container }}

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
uses: actions/checkout@v4
4747

4848
- name: Set-up OCaml
49-
uses: ocaml/setup-ocaml@v2
49+
uses: ocaml/setup-ocaml@v3
5050
with:
5151
ocaml-compiler: "5.2"
5252

@@ -63,13 +63,13 @@ The actions are downloaded and run from the GitHub graph of repositories. The
6363
workflow references an action using a ref.
6464
6565
> [!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
6767
> can add net new capabilities but should not break existing input compatibility
6868
> or break existing workflows.
6969

7070
```yml
7171
- name: Set-up OCaml ${{ matrix.ocaml-compiler }}
72-
uses: ocaml/setup-ocaml@v2
72+
uses: ocaml/setup-ocaml@v3
7373
# ^^^
7474
with:
7575
ocaml-compiler: ${{ matrix.ocaml-compiler }}
@@ -86,11 +86,11 @@ creating a tag.
8686
```yml
8787
steps:
8888
# Reference the major version of a release (most recommended)
89-
- uses: ocaml/setup-ocaml@v2
89+
- uses: ocaml/setup-ocaml@v3
9090
# Reference a specific commit (most strict)
9191
- uses: ocaml/setup-ocaml@<SHA>
9292
# 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
9494
# Reference a branch (most dangerous - do not do this)
9595
- uses: ocaml/setup-ocaml@master
9696
```

SECURITY.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
| Version | Supported |
1111
| ------- | ------------------ |
12+
| v3 | :white_check_mark: |
1213
| v2 | :white_check_mark: |
1314
| v1 | :white_check_mark: |
1415

analysis/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Set-up OCaml
16-
uses: ocaml/setup-ocaml@v2
16+
uses: ocaml/setup-ocaml@v3
1717
with:
1818
ocaml-compiler: "5.2"
19-
dune-cache: true
2019

2120
- name: Opam Dependency Submission
22-
uses: ocaml/setup-ocaml/analysis@v2
21+
uses: ocaml/setup-ocaml/analysis@v3
2322
```
2423
2524
## Inputs

lint-doc/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Set-up OCaml
16-
uses: ocaml/setup-ocaml@v2
16+
uses: ocaml/setup-ocaml@v3
1717
with:
1818
ocaml-compiler: "5.2"
19-
dune-cache: true
2019

2120
- name: Lint doc
22-
uses: ocaml/setup-ocaml/lint-doc@v2
21+
uses: ocaml/setup-ocaml/lint-doc@v3
2322
```
2423
2524
## Inputs

lint-fmt/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,12 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Set-up OCaml
19-
uses: ocaml/setup-ocaml@v2
19+
uses: ocaml/setup-ocaml@v3
2020
with:
2121
ocaml-compiler: "5.2"
22-
dune-cache: true
2322

2423
- name: Lint fmt
25-
uses: ocaml/setup-ocaml/lint-fmt@v2
24+
uses: ocaml/setup-ocaml/lint-fmt@v3
2625
```
2726
2827
## Inputs

lint-opam/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ jobs:
1313
uses: actions/checkout@v4
1414

1515
- name: Set-up OCaml
16-
uses: ocaml/setup-ocaml@v2
16+
uses: ocaml/setup-ocaml@v3
1717
with:
1818
ocaml-compiler: "5.2"
19-
dune-cache: true
2019

2120
- name: Lint opam
22-
uses: ocaml/setup-ocaml/lint-opam@v2
21+
uses: ocaml/setup-ocaml/lint-opam@v3
2322
```
2423
2524
## Inputs

0 commit comments

Comments
 (0)