From 8a6b3a0ac0d6db325497f245a4e6d9644b6036b5 Mon Sep 17 00:00:00 2001 From: Falco Nogatz Date: Fri, 10 Apr 2026 00:16:10 +0200 Subject: [PATCH 1/2] Upgrade to actions/checkout@6 No breaking changes according to the [changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md). Co-authored-by: Falco Nogatz --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef5d197..ba57468 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Validate composer.json and composer.lock run: composer validate --strict From 3ff6d8a83ca47d464b0025e19709bc26c1b51712 Mon Sep 17 00:00:00 2001 From: Falco Nogatz Date: Fri, 10 Apr 2026 00:22:25 +0200 Subject: [PATCH 2/2] Upgrade to actions/cache@5 No breaking changes according to the [README](https://github.com/actions/cache\?tab\=readme-ov-file#whats-new). The former v2 is deprecated and sunsetted for more than a year now, resulting in failing workflow runs like [this one](https://github.com/Ghostff/Session/actions/runs/21420052010/job/61677355966\?pr\=24). Co-authored-by: Falco Nogatz --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba57468..4a2382b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,13 @@ jobs: - name: Cache Composer packages id: composer-cache - uses: actions/cache@v2 + uses: actions/cache@v5 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- + - name: Install dependencies run: composer install --prefer-dist --no-progress