From 7988ec1c23f9e2c3ce4fc8cdf9e7fc1746c57d41 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Sat, 26 Aug 2023 07:25:37 -0700 Subject: [PATCH] Update GHA checkout actions to v3 v2 uses node v12, a deprecated version --- .github/workflows/build.yml | 2 +- .github/workflows/codeql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce004ff..e64986c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: image: redis:7.0.12-alpine # Docker Hub image used as a sidecar steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Install dependencies run: | apt-get -y update diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e7b0bfa..ee4fc2d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Initialize CodeQL uses: github/codeql-action/init@v2