Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/actions-pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ It is written using a configuration format called [YAML](https://yaml.org/), whi
A simple example of a `project.yaml` is as follows:

```yaml
version: "4.0"
version: "5.0"

actions:
generate_dataset:
Expand Down
2 changes: 1 addition & 1 deletion docs/case-control-studies.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ There are five steps to undertaking a [case-control study](https://en.wikipedia.
To begin with, our [`project.yaml`](actions-pipelines.md) looks like this:

```yaml
version: '4.0'
version: '5.0'

actions:
# Extract data for the cases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ This code reads the CSV of patient data, and saves a histogram of ages to a new
=== "Python"

```yaml linenums="1" hl_lines="10 11 12 13 14 15"
version: "4.0"
version: "5.0"

actions:
generate_dataset:
Expand All @@ -87,7 +87,7 @@ This code reads the CSV of patient data, and saves a histogram of ages to a new
=== "R"

```yaml linenums="1" hl_lines="10 11 12 13 14 15"
version: "4.0"
version: "5.0"

actions:
generate_dataset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ open the `project.yaml` file by clicking on it. This file will be near the end o
You should see a tab with the following content:

```yaml linenums="1" hl_lines="5"
version: "4.0"
version: "5.0"

actions:
generate_dataset:
Expand Down
Loading