Skip to content
Open
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 .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
check_links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Restore lychee cache
id: restore-cache
uses: actions/cache/restore@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.10.4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
use-ros2-testing: true
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ros-tooling/[email protected]
with:
target-ros2-distro: ${{ env.ROS_DISTRO }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/foxy-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
BEFORE_INIT: 'apt-get update -qq && apt-get install -y iproute2 iputils-ping && ip addr && ping -c5 192.168.56.101'
IMMEDIATE_TEST_OUTPUT: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: foxy
- name: start ursim
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/galactic-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
NOT_TEST_BUILD: true
NOT_TEST_DOWNSTREAM: true
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: galactic
- uses: 'ros-industrial/industrial_ci@master'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable_ici.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
steps:
- name: Checkout ${{ github.ref_name }} since build is not scheduled
if: ${{ github.event_name != 'schedule' }}
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Checkout ${{ inputs.ref_for_scheduled_build }} on scheduled build
if: ${{ github.event_name == 'schedule' }}
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref_for_scheduled_build }}
- run: docker network create --subnet=192.168.56.0/24 ursim_net
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Setup pre-commit
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: 3.10.4
Expand Down
Loading