From 974c9eb5cdb53389fed7a7011b87c8c80ed25c48 Mon Sep 17 00:00:00 2001 From: Armando Neto Date: Thu, 22 Aug 2024 12:11:02 +0200 Subject: [PATCH] Update GitHub's checkout action This should fix the failed 'Build and Publish' action: https://github.com/freeipa/freeipa-planet/actions. The warning points to https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ stating that we need to bump the node used by the mentioned action, which was addressed by https://github.com/actions/checkout/issues/1047. Bumping the version of 'actions/checkout' should fix the issue. --- .github/workflows/build-gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-gh-pages.yml b/.github/workflows/build-gh-pages.yml index 6dee6db..7190cbc 100644 --- a/.github/workflows/build-gh-pages.yml +++ b/.github/workflows/build-gh-pages.yml @@ -19,7 +19,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Run build script run: ./planet-build-hook.sh