From 1f6296c86d3504b67e0f27cc010d123b3292254d Mon Sep 17 00:00:00 2001 From: Michal Hybner Date: Wed, 25 Dec 2024 23:25:12 +0100 Subject: [PATCH] Update Blackfire action to PHP 8.4 --- .github/workflows/blackfire.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/blackfire.yml b/.github/workflows/blackfire.yml index 0491ee4a..ffb30441 100644 --- a/.github/workflows/blackfire.yml +++ b/.github/workflows/blackfire.yml @@ -13,7 +13,7 @@ jobs: - name: Set up PHP uses: shivammathur/setup-php@v2 with: - php-version: 7.4 + php-version: 8.4 coverage: none - name: Checkout code @@ -26,7 +26,7 @@ jobs: id: fetch_version run: | cd layers/blackfire; - for VERSION in 80 81 82; do + for VERSION in 80 81 82 83 84; do BF_AGENT_VERSION=$(curl -s -o probe -D - https://blackfire.io/api/v1/releases/probe/php/linux/amd64/$VERSION | grep -i 'X-Blackfire-Release-Version: ' | sed "s%X-Blackfire-Release-Version: %%I" | sed s%.$%%); php ./store.php $VERSION $BF_AGENT_VERSION; done