From b77dd0f62166262fef5248090dbe1eb6475b1b35 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 18 Apr 2026 18:08:38 +0300 Subject: [PATCH] Update actions/checkout to v6 --- .github/workflows/ci_cd.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f4598cb..2014ffa 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Fetch repository - uses: actions/checkout@3 + uses: actions/checkout@6 - name: Upgrade packages run: apt update -y && apt upgrade -y - name: Download and install dependencies @@ -30,7 +30,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') && needs.test.result == 'success' steps: - name: Fetch repository - uses: actions/checkout@3 + uses: actions/checkout@6 - name: Check debian changelog version run: test $(grep '^stormfetch' debian/changelog | head -n1 | grep -Po '(?<=\().*(?=\))' | cut -d '-' -f1) == ${{ github.ref_name }} - name: Upgrade packages