Skip to content

Commit

Permalink
0.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
  • Loading branch information
christophebedard committed Mar 4, 2022
1 parent 695af20 commit e915d4f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ See [action.yml](action.yml).

`setup-ros` is under active development, and compatibility between releases is not yet guaranteed.
Please do not use `ros-tooling/setup-ros@master`.
Instead, pin your workflows to a particular release, e.g.: `ros-tooling/setup-ros@v0.2`.
Instead, pin your workflows to a particular release, e.g.: `ros-tooling/setup-ros@v0.3`.

### Setting up the worker, and installing the system dependencies

Expand All @@ -89,7 +89,7 @@ This setup should be used when ROS is built entirely from source.

```yaml
steps:
- uses: ros-tooling/setup-ros@v0.2
- uses: ros-tooling/setup-ros@v0.3
- run: vcs --help
```
Expand All @@ -108,7 +108,7 @@ jobs:
os: [macOS-latest, windows-latest]
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.2
uses: ros-tooling/setup-ros@v0.3
- run: vcs --help
build_docker:
Expand All @@ -117,7 +117,7 @@ jobs:
image: ubuntu:focal
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.2
uses: ros-tooling/setup-ros@v0.3
- run: vcs --help
```

Expand All @@ -132,7 +132,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.2
- uses: ros-tooling/setup-ros@v0.3
with:
required-ros-distributions: noetic galactic
- run: "source /opt/ros/galactic/setup.bash && ros2 run --help"
Expand All @@ -151,7 +151,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.2
- uses: ros-tooling/setup-ros@v0.3
with:
use-ros2-testing: true
required-ros-distributions: galactic
Expand All @@ -169,7 +169,7 @@ build_docker:
container:
image: ubuntu:focal
steps:
- uses: ros-tooling/setup-ros@v0.2
- uses: ros-tooling/setup-ros@v0.3
with:
install-connext: true
use-ros2-testing: true
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
- foxy
- galactic
steps:
- uses: ros-tooling/setup-ros@v0.2
- uses: ros-tooling/setup-ros@v0.3
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
image: ${{ matrix.docker_image }}
steps:
- name: setup ROS environment
uses: ros-tooling/setup-ros@v0.2
uses: ros-tooling/setup-ros@v0.3
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test ROS 1
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "setup-ros",
"version": "0.2.2",
"version": "0.3.0",
"description": "GitHub Action to setup a ROS 2 development environment",
"main": "lib/main.js",
"scripts": {
Expand Down

0 comments on commit e915d4f

Please sign in to comment.