From 3029969d07a1bf45914f48c96fa40abc3d421466 Mon Sep 17 00:00:00 2001 From: rickstaa Date: Thu, 24 Aug 2023 15:43:31 +0200 Subject: [PATCH] ci: update checkout action to v3 This commit updates the actions/checkout action to v3 since v2 uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d806b5476..b8f1f2028 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: mkdir -p ${{github.workspace}}/devel # compilation cache for formatter & linter - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: path: src/franka_ros