Skip to content

Commit

Permalink
Updated GitHub build action/checkout and action/cache
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyamcl committed Dec 8, 2024
1 parent 792b3ab commit c286133
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: Github Build
on: [push, pull_request]
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.4', '7.3', '7.2', '8.0', '8.1', '8.2']
php: [ '7.4', '7.3', '7.2', '8.0', '8.1', '8.2' ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
Expand All @@ -23,7 +23,7 @@ jobs:
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }}
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## UNRELEASED
### Added
- PHP 8.2 Github Build
###
- Updated GitHub build `action/checkout` and `action/cache`
### Fixed
- Build issue with PHPStan in `HtmlHelper`

Expand Down

0 comments on commit c286133

Please sign in to comment.