From 5783b841a43bf2f7e7ad24d6224d30943902093e Mon Sep 17 00:00:00 2001 From: Roman Melnikov Date: Tue, 12 Dec 2023 12:40:47 +0100 Subject: [PATCH] [Chore] Update "actions/checkout" Problem: node16 is now deprecated and github-runner provided by nixpkgs no longer supports this runtime. However, "actions/checkout@v3" uses this runtime. Solution: Update CI pipeline to use "actions/checkout@v4". --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 5b96dee..8de8c12 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -9,7 +9,7 @@ jobs: general-checks: runs-on: [self-hosted, nix] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: check trailing whitespaces run: nix-build ci.nix -A trailing-whitespace-check @@ -41,7 +41,7 @@ jobs: build: runs-on: [self-hosted, nix] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build run: nix-build ci.nix -A lib -A cli -A server @@ -54,7 +54,7 @@ jobs: runs-on: [self-hosted, nix] needs: build steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'true'