From f29b7be36f62cfa37883d9da6b290018ea0b324c Mon Sep 17 00:00:00 2001 From: Roman Melnikov Date: Tue, 12 Dec 2023 12:41:41 +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/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fbf87809..3406e519 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: check: runs-on: [self-hosted, nix] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: reuse lint run: nix shell .#packages.x86_64-linux.reuse -c reuse lint @@ -47,7 +47,7 @@ jobs: runs-on: [self-hosted, nix] if: ${{ github.ref == 'refs/heads/master' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: deploy webdemo run: |