From 516ffb2147e7df3914dc9b790ea16a8a2190b52b Mon Sep 17 00:00:00 2001 From: Ed Hennis Date: Sat, 1 Jul 2023 03:13:37 -0400 Subject: [PATCH] chore: update checkout action version to v3: (#4598) * Update the version of the checkout action (for GitHub Actions) in `clang-format.yml` and `levelization.yml`. * The previous version, v2, was raising deprecation warnings due to its reliance on Node.js 12. * The latest checkout action version, v3, uses Node.js 16. --- .github/workflows/clang-format.yml | 2 +- .github/workflows/levelization.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml index 941789844b..802748e84f 100644 --- a/.github/workflows/clang-format.yml +++ b/.github/workflows/clang-format.yml @@ -8,7 +8,7 @@ jobs: env: CLANG_VERSION: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install clang-format run: | codename=$( lsb_release --codename --short ) diff --git a/.github/workflows/levelization.yml b/.github/workflows/levelization.yml index 3ed0748825..3128513f66 100644 --- a/.github/workflows/levelization.yml +++ b/.github/workflows/levelization.yml @@ -8,7 +8,7 @@ jobs: env: CLANG_VERSION: 10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Check levelization run: Builds/levelization/levelization.sh - name: Check for differences