Skip to content

Commit cf86310

Browse files
Bump actions/checkout from 1 to 4 (#1204)
Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...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>
1 parent e22f9e3 commit cf86310

15 files changed

+18
-18
lines changed

.github/workflows/ci-coverage-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: ros-tooling/[email protected]
2020
with:
2121
required-ros-distributions: ${{ env.ROS_DISTRO }}
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: ros-tooling/[email protected]
2424
with:
2525
target-ros2-distro: ${{ env.ROS_DISTRO }}

.github/workflows/ci-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Format
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v2
1717
with:
1818
python-version: '3.10'

.github/workflows/ci-ros-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
linter: [cppcheck, copyright, lint_cmake]
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: ros-tooling/[email protected]
1616
- uses: ros-tooling/[email protected]
1717
with:
@@ -35,7 +35,7 @@ jobs:
3535
matrix:
3636
linter: [cpplint]
3737
steps:
38-
- uses: actions/checkout@v3
38+
- uses: actions/checkout@v4
3939
- uses: ros-tooling/[email protected]
4040
- uses: ros-tooling/[email protected]
4141
with:

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: docker/setup-buildx-action@v1
2323

2424
- name: Checkout repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626

2727
- name: Log in to the Container registry
2828
uses: docker/login-action@v1
@@ -62,7 +62,7 @@ jobs:
6262
uses: docker/setup-buildx-action@v1
6363

6464
- name: Checkout repository
65-
uses: actions/checkout@v2
65+
uses: actions/checkout@v4
6666

6767
- name: Log in to the Container registry
6868
uses: docker/login-action@v1

.github/workflows/foxy-abi-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
abi_check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: ros-industrial/industrial_ci@master
1616
env:
1717
ROS_DISTRO: foxy

.github/workflows/galactic-abi-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
abi_check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: ros-industrial/industrial_ci@master
1616
env:
1717
ROS_DISTRO: galactic

.github/workflows/galactic-rhel-binary-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
ROS_DISTRO: galactic
2323
container: ghcr.io/ros-controls/ros:galactic-rhel
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
with:
2727
path: src/ros2_control
2828
- run: |

.github/workflows/humble-abi-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
abi_check:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: ros-industrial/industrial_ci@master
1616
env:
1717
ROS_DISTRO: humble

.github/workflows/humble-rhel-binary-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ROS_DISTRO: humble
2222
container: ghcr.io/ros-controls/ros:humble-rhel
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
path: src/ros2_control
2727
- run: |

.github/workflows/prerelease-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
pre_release:
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
with:
3333
ref: ${{ github.event.inputs.branch }}
3434
- name: industrial_ci

0 commit comments

Comments
 (0)