Skip to content

Commit

Permalink
0.7.0
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 Jul 18, 2023
1 parent 0827768 commit 43873f0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 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.6`.
Instead, pin your workflows to a particular release, e.g.: `ros-tooling/setup-ros@v0.7`.

### 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.6
- uses: ros-tooling/setup-ros@v0.7
- 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.6
uses: ros-tooling/setup-ros@v0.7
- run: vcs --help

build_docker:
Expand All @@ -117,7 +117,7 @@ jobs:
image: ubuntu:jammy
steps:
- name: Setup ROS
uses: ros-tooling/setup-ros@v0.6
uses: ros-tooling/setup-ros@v0.7
- run: vcs --help
```

Expand All @@ -132,7 +132,7 @@ build_docker:
container:
image: ubuntu:jammy
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: noetic humble
- run: "source /opt/ros/humble/setup.bash && ros2 run --help"
Expand All @@ -151,7 +151,7 @@ build_docker:
container:
image: ubuntu:jammy
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
use-ros2-testing: true
required-ros-distributions: humble
Expand All @@ -169,7 +169,7 @@ build_docker:
container:
image: ubuntu:jammy
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
install-connext: true
use-ros2-testing: true
Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
- humble
- iron
steps:
- uses: ros-tooling/setup-ros@v0.6
- uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
image: ${{ matrix.docker_image }}
steps:
- name: setup ROS environment
uses: ros-tooling/setup-ros@v0.6
uses: ros-tooling/setup-ros@v0.7
with:
required-ros-distributions: ${{ matrix.ros_distribution }}
- name: build and test ROS 1
Expand Down
4 changes: 2 additions & 2 deletions 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.6.2",
"version": "0.7.0",
"description": "GitHub Action to setup a ROS 2 development environment",
"main": "lib/main.js",
"scripts": {
Expand Down

0 comments on commit 43873f0

Please sign in to comment.