Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#798)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 11, 2023
1 parent b287d95 commit 2485fd2
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
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@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
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 @@ -19,7 +19,7 @@ jobs:
- uses: ros-tooling/[email protected]
with:
required-ros-distributions: ${{ env.ROS_DISTRO }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- 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@v3
- uses: actions/checkout@v4
with:
ref: foxy
- name: start ursim
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/foxy-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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@v3
- uses: actions/checkout@v4
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@v3
- uses: actions/checkout@v4
with:
ref: galactic
- uses: 'ros-industrial/industrial_ci@master'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/galactic-execution-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
IMMEDIATE_TEST_OUTPUT: true
PARALLEL_TESTS: 2
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: galactic
- name: start ursim
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/galactic-semi-binary-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
NOT_TEST_BUILD: true
NOT_TEST_DOWNSTREAM: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
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 @@ -38,10 +38,10 @@ jobs:
steps:
- name: Checkout ${{ inputs.ref }} when build is not scheduled
if: ${{ github.event_name != 'schedule' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Checkout ${{ inputs.ref }} on scheduled build
if: ${{ github.event_name == 'schedule' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
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@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.10.4
Expand Down

0 comments on commit 2485fd2

Please sign in to comment.