From eaa5b8c08fc66b0b5d83c26211de0632e03631d4 Mon Sep 17 00:00:00 2001 From: Jan Rosier Date: Tue, 24 Jun 2025 19:40:53 +0200 Subject: [PATCH] Bump github actions Fixes Composer install warnings: - The `set-output` command is deprecated and will be disabled soon. - The `save-state` command is deprecated and will be disabled soon. --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 161f12ea..885b4d68 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,6 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 - with: php-version: 8.3 coverage: none @@ -44,9 +43,10 @@ jobs: - php: '8.4' deps: highest monolog: '3.*' + steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -64,7 +64,7 @@ jobs: run: composer require --no-update monolog/monolog:${{ matrix.monolog }} - name: Composer install - uses: ramsey/composer-install@v1 + uses: ramsey/composer-install@v3 with: dependency-versions: '${{ matrix.deps }}'