From 8254967b42021a9449befa6bfa5f3be63b79ec9a Mon Sep 17 00:00:00 2001 From: Don Hardman Date: Fri, 15 Nov 2024 17:14:04 +0700 Subject: [PATCH] Update PHP to 8.3.13 --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- README.md | 9 ++++----- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 62e05b1..07d9761 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: env: APP_NAME: 'manticore-executor' DOCKER_TAG: 'manticoresearch/manticore-executor' - PHP_VERSION: '8.3.4' + PHP_VERSION: '8.3.13' MAINTAINER: 'Manticore' DESC: 'Custom built PHP executor for Manticore.' EXTRA_NAME: 'manticore-extra' @@ -116,7 +116,7 @@ jobs: run: | echo "app_version=$(echo ${{ github.ref_name }} | cut -dv -f2)" >> $GITHUB_OUTPUT - name: Build manticore-executor-dev - run: ./build-linux 8.3.4 0 1 + run: ./build-linux ${{ env.PHP_VERSION }} 0 1 shell: bash - name: Create artifact run: | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f0467d..2e6ecb6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ on: env: APP_NAME: 'manticore-executor' - PHP_VERSION: '8.3.4' + PHP_VERSION: '8.3.13' MAINTAINER: 'Manticore' DESC: 'Custom built PHP executor for Manticore.' diff --git a/README.md b/README.md index 45a2478..182d4b6 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Manticore Executor is a custom built PHP binary which: By default, we disable all extensions and enable only those required to run our scripts. -We build executor from `PHP 8.3.4` with the following extensions enabled and compiled into the executable statically: +We build executor from `PHP 8.3.13` with the following extensions enabled and compiled into the executable statically: * pcntl * posix @@ -82,11 +82,10 @@ Several scripts used to build the final package: * `build-linux` * `build-osx` -The scripts accept a version of PHP as a parameter. The current version is `8.3.4`. To build the binary, you should run the following example: +The scripts accept a version of PHP as a parameter. The current version is `8.3.13`. To build the binary, you should run the following example: ```bash -./build-linux "8.3.4" +./build-linux "8.3.13" ``` -The command above will build the package on Linux with **PHP** `8.3.4`. Once it's done, you can find your binary in folder `dist/bin`. - +The command above will build the package on Linux with **PHP** `8.3.13`. Once it's done, you can find your binary in folder `dist/bin`. \ No newline at end of file