From 3ca90bc445fe80cdc25792d606b2dd0d56e84bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Tue, 5 Aug 2025 21:05:08 +0200 Subject: [PATCH] Partially revert CI changes --- .github/workflows/ci.yml | 4 ++-- tests/GlobalCacheTest.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a22c1a94..7cdf2ae6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: include: - - laravel: "dev-dbstore-setconnection" # todo0 revert along with require (8 lines below) + - laravel: "12.x-dev" # todo0 revert php: "8.4" steps: @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v2 - name: Install Composer dependencies run: | - composer require "stancl/framework:${{ matrix.laravel }}" --no-interaction --no-update + composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update composer update --prefer-dist --no-interaction - name: Run tests if: ${{ ! env.ACT }} diff --git a/tests/GlobalCacheTest.php b/tests/GlobalCacheTest.php index 7972bbb2..42283ddf 100644 --- a/tests/GlobalCacheTest.php +++ b/tests/GlobalCacheTest.php @@ -78,7 +78,7 @@ test('global cache is always central', function (string $store, array $bootstrap withTenantDatabases(true); } - // todo@samuel maybe add assertions about the DB connection used by: + // todo0 maybe add assertions about the DB connection used by: // 1. global_cache()->store()->getStore()->getConnection()->getName() // 2. cache()->store()->getStore()->getConnection()->getName() // 3. GlobalCache::store()->getStore()->getConnection()->getName()