Skip to content

Commit 5819951

Browse files
Bump actions/checkout from 3 to 4 (#101)
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>
1 parent ed7fca0 commit 5819951

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Format
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: actions/setup-python@v4
2020
with:
2121
python-version: '3.10'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
linter: [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:

.github/workflows/prerelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
BASEDIR: ${{ github.workspace }}/.work
2121
CACHE_PREFIX: ${{ matrix.ROS_DISTRO }}-${{ matrix.ROS_REPO }}
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
# The target directory cache doesn't include the source directory because
2525
# that comes from the checkout. See "prepare target_ws for cache" task below
2626
- name: cache target_ws

.github/workflows/reusable_ici.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
steps:
3939
- name: Checkout ${{ inputs.ref }} when build is not scheduled
4040
if: ${{ github.event_name != 'schedule' }}
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
- name: Checkout ${{ inputs.ref }} on scheduled build
4343
if: ${{ github.event_name == 'schedule' }}
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
ref: ${{ inputs.ref_for_scheduled_build }}
4747
- run: docker network create --subnet=192.168.56.0/24 ursim_net

.github/workflows/update-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
# Setup pre-commit
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v4
1919
with:
2020
python-version: 3.10.4

0 commit comments

Comments
 (0)