Skip to content

Commit 101ea8d

Browse files
authored
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 ea34fab commit 101ea8d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.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)