From fbb0914201e78fd2f1bb3d824c0d9703f71adb82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 23:17:17 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [voidzero-dev/setup-vp](https://github.com/voidzero-dev/setup-vp) and [actions/cache](https://github.com/actions/cache). Updates `voidzero-dev/setup-vp` from 1 to 1.12.0 - [Release notes](https://github.com/voidzero-dev/setup-vp/releases) - [Commits](https://github.com/voidzero-dev/setup-vp/compare/v1...v1.12.0) Updates `actions/cache` from 5.0.5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5.0.5...v6.1.0) --- updated-dependencies: - dependency-name: voidzero-dev/setup-vp dependency-version: 1.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 84f6c2a..86224d5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -36,19 +36,19 @@ jobs: uses: oven-sh/setup-bun@v2 - name: Setup Vite+ - uses: voidzero-dev/setup-vp@v1 + uses: voidzero-dev/setup-vp@v1.12.0 with: node-version: 24 - name: Cache Composer Dependencies - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Cache Bun Dependencies - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('bun.lockb') }} @@ -74,7 +74,7 @@ jobs: run: echo "version=$(bun pm ls 2>/dev/null | grep playwright | head -1 | sed 's/.*@//')" >> $GITHUB_OUTPUT - name: Cache Playwright Browsers - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: playwright-cache with: path: ~/.cache/ms-playwright @@ -89,14 +89,14 @@ jobs: run: bunx playwright install-deps - name: Cache Rector - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: /tmp/rector key: ${{ runner.os }}-rector-${{ hashFiles('composer.lock') }} restore-keys: ${{ runner.os }}-rector- - name: Cache PHPStan - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: /tmp/phpstan key: ${{ runner.os }}-phpstan-${{ hashFiles('composer.lock') }}