From a888525f4c48abcf8f17b8989a1c3834accb814b Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Thu, 5 Feb 2026 13:53:27 +0000 Subject: [PATCH] Update version of checkout action in CI scripts (#76). The version of the checkout action is outdated. The demos CI jobs use versions 3 and 4, although version 6 has already been released. To keep Space ROS and our support infrastructure working with newer versions of dependencies, these actions should be updated. This commit updates the version of the checkout action in all actions that pin a specific version. --- .github/workflows/docker-image.yml | 2 +- .github/workflows/pr.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index c75db508..eeac038f 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -58,7 +58,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v6 - name: Run build script - ${{ matrix.script }} run: | diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 74908517..0bb9e0e4 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -11,5 +11,5 @@ jobs: name: Space ROS Commit Message Standards runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: space-ros/check-commit-message-action@main