diff --git a/.github/actions/setup-php/action.yml b/.github/actions/setup-php/action.yml index c928269..538ec2a 100644 --- a/.github/actions/setup-php/action.yml +++ b/.github/actions/setup-php/action.yml @@ -6,8 +6,8 @@ inputs: php-version: required: false type: string - description: the php version to use, defaults to 8.4 - default: '8.4' + description: the php version to use, defaults to 8.5 + default: '8.5' runs: using: composite diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9900b49..b96d29c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,12 +13,12 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: start beanstalkd run: docker compose up -d - name: PHP @@ -35,12 +35,12 @@ jobs: strategy: matrix: include: - - php-version: 8.3 - php-version: 8.4 + - php-version: 8.5 steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: start beanstalkd run: docker compose up -d - name: PHP diff --git a/composer.json b/composer.json index 9dbbbe2..08ede31 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,7 @@ { "name": "Christopher Davis", "email": "chris@pmg.com" } ], "require": { - "php": "^8.3", + "php": "^8.4", "pmg/queue": "^6.2", "pda/pheanstalk": "^4.0" },