Skip to content

Commit ff0830a

Browse files
Bump actions/checkout from 2 to 6 (#1050)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Davide Faconti <davide.faconti@gmail.com>
1 parent 4ed7ef7 commit ff0830a

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.github/workflows/cmake_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
os: [ubuntu-22.04]
2424

2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v6
2727

2828
- name: Install Conan
2929
id: conan

.github/workflows/cmake_ubuntu_sanitizers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
sanitizer: [asan_ubsan, tsan]
2626

2727
steps:
28-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v6
2929

3030
- name: Install Conan
3131
id: conan

.github/workflows/cmake_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
os: [windows-latest]
2424

2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v6
2727

2828
- name: Install Conan
2929
id: conan

.github/workflows/pixi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
steps:
1919
# Pixi is the tool used to create/manage conda environment
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v6
21+
- uses: prefix-dev/setup-pixi@v0.8.1
2122
- uses: prefix-dev/setup-pixi@v0.9.3
2223
with:
2324
pixi-version: v0.40.3

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
pre-commit:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-python@v6
1616
- uses: pre-commit/action@v3.0.1
1717

1818
clang-tidy:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Install LLVM 21
2424
run: |

.github/workflows/ros2-rolling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- {ROS_DISTRO: rolling, ROS_REPO: main}
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1919
- uses: 'ros-industrial/industrial_ci@master'
2020
env: ${{matrix.env}}
2121
with:

.github/workflows/ros2.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- {ROS_DISTRO: jazzy, ROS_REPO: main}
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v6
2020
- uses: 'ros-industrial/industrial_ci@master'
2121
env: ${{matrix.env}}
2222
with:

0 commit comments

Comments
 (0)