Skip to content

Commit 61c4c17

Browse files
committed
Pump checkout to v6.0.0 (#1328)
This PR upgrades the `actions/checkout` action from v5 to v6 across three GitHub workflow files for build and test automation. - Consistent version bump of `actions/checkout` from v5 to v6 across all modified workflow files - No other changes to workflow logic or configuration - Ensures the CI/CD pipeline uses the latest version of the checkout action Fix: #1327
1 parent e95ed17 commit 61c4c17

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/linux-arm64-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
run: |
5454
sudo apt install ros-${{ matrix.ros_distribution }}-test-msgs
5555
56-
- uses: actions/checkout@v5
56+
- uses: actions/checkout@v6
5757

5858
- name: Fix permissions
5959
run: |

.github/workflows/linux-x64-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
sudo apt install ros-${{ matrix.ros_distribution }}-test-msgs
5858
59-
- uses: actions/checkout@v5
59+
- uses: actions/checkout@v6
6060

6161
- name: Build and test rclnodejs
6262
run: |

.github/workflows/windows-build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Prebuild - Setup VS Dev Environment
4242
uses: seanmiddleditch/gha-setup-vsdevenv@v4
4343

44-
- uses: actions/checkout@v5
44+
- uses: actions/checkout@v6
4545

4646
- name: Build rclnodejs
4747
shell: cmd

0 commit comments

Comments
 (0)