From 0f07b36197371b40a871f12988fc526951aca0d8 Mon Sep 17 00:00:00 2001 From: Victoria Martinez de la Cruz Date: Mon, 29 Apr 2024 15:20:29 +0200 Subject: [PATCH] Bump actions checkout to v4 Bump actions checkout to v4 since Node.js 16 actions are deprecated. We need to update to Node.js 20, which is included in actions/checkout@v4. --- .github/workflows/linter.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 74833f5..e620e4c 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.3 - name: Run clang-format-lint uses: DoozyX/clang-format-lint-action@v0.11 with: @@ -34,6 +34,6 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4.1.3 - name: Check build of Dockerfile is successful run: docker build -t sg-bridge:check-build -f build/Dockerfile .