From f2d8c30b7cd965e2c3997a204c3b7613de020615 Mon Sep 17 00:00:00 2001 From: Jesus Sandoval <46768834+jsandov@users.noreply.github.com> Date: Wed, 22 May 2024 08:26:23 -0700 Subject: [PATCH] Update action.yml Updating the checkout action to the latest version. This will resolve the following warning message after a successful run: Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/. --- actions/utils/prerun/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/utils/prerun/action.yml b/actions/utils/prerun/action.yml index facf598..bc66b97 100644 --- a/actions/utils/prerun/action.yml +++ b/actions/utils/prerun/action.yml @@ -12,7 +12,7 @@ runs: using: "composite" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.6 with: # Checking out the commit sha should always work. For closed PRs with deleted branches, # this checks out the sha of the merge commit.