Skip to content

Commit

Permalink
Update setup-ros to v0.7 in README examples
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <christophe.bedard@apex.ai>
  • Loading branch information
christophebedard committed Nov 1, 2023
1 parent 3cfe858 commit 38c12d5
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ In this case, `action-ros-ci` will rely on `setup-ros` for installing ROS 2 bina

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -95,7 +95,7 @@ In this case, `action-ros-ci` will build all necessary ROS 2 dependencies of `my

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
- uses: ros-tooling/action-ros-ci@v0.3
with:
package-name: my_package
Expand All @@ -119,7 +119,7 @@ jobs:
humble_source:
runs_on: ubuntu-22.04
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -138,7 +138,7 @@ You can also automatically generate your package's dependencies using the follow
```yaml
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
# Run the generator and output the results to a file.
- run: |
rosinstall_generator <package-name> --rosdistro <target-distro> \
Expand All @@ -160,7 +160,7 @@ Simply use `target-ros1-distro` instead of `target-ros2-distro`.

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: noetic
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -175,7 +175,7 @@ To skip tests and code coverage data processing, set the `skip-tests` option to

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -192,7 +192,7 @@ This allows using a `colcon` option/argument that is not exposed by this action'

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -216,7 +216,7 @@ memory corruption bugs.

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand Down Expand Up @@ -252,7 +252,7 @@ preferable to use a `colcon` mixin (through [`colcon-defaults`](#Use-a-colcon-de

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand All @@ -277,7 +277,7 @@ Generate code coverage information for Python files using the appropriate mixins

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand Down Expand Up @@ -308,7 +308,7 @@ See [`codecov/codecov-action`](https://github.com/codecov/codecov-action) docume
```yaml
steps:
- uses: actions/checkout@v2
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: humble
- uses: ros-tooling/action-ros-ci@v0.3
Expand Down

0 comments on commit 38c12d5

Please sign in to comment.