From 928a4db1b05d996961870e51d4a116cb1bf98b41 Mon Sep 17 00:00:00 2001 From: Nick Huang <9151347+nick322@users.noreply.github.com> Date: Mon, 20 Apr 2026 10:18:20 +0800 Subject: [PATCH] chore: update actions/checkout and actions/cache to latest versions --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5d24b96..3bd2eb2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Get Composer Cache Directory id: composer-cache @@ -34,7 +34,7 @@ jobs: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}-composer