From 0a3f51f578586e0d8f32582f7516ee5d914012e8 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Fri, 9 Feb 2024 18:36:30 -0600 Subject: [PATCH] Update the `actions/checkout` action used by the Github workflows. The workflows currently use `actions/checkout@v3` which used node version 16. This results in a warning that Node.js 16 actions are deprecated. So this updates to `actions/checkout@v4`. --- .github/workflows/linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index f4ff1e90d3..d64ec1b02a 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -17,7 +17,7 @@ jobs: container: image: perl:5.34 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: perl -V run: perl -V - name: Install dependencies