Skip to content

Commit

Permalink
Fix actions runner not having latest PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdannbv committed Mar 10, 2024
1 parent eb7cbb6 commit e17f7b2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
needs: test
runs-on: ubuntu-latest
steps:
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- uses: actions/checkout@v4

- name: Cache Composer packages
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Setup PHP
id: setup-php
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'

- uses: actions/checkout@v4

- name: Validate composer.json and composer.lock
Expand Down

0 comments on commit e17f7b2

Please sign in to comment.