Skip to content

Commit

Permalink
Update GitHub build library versions
Browse files Browse the repository at this point in the history
Upgrade `actions/checkout` to v4 and `actions/cache` to v4 for improved compatibility and performance. Updated changelog to reflect these changes.
  • Loading branch information
caseyamcl committed Dec 20, 2024
1 parent 99566be commit 2b427af
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## UNRELEASED
### Added
- Tests for PHP 8.3 and 8.4

### Changed
- Upgraded GitHub build library versions: `actions/checkout` and `actions/cache`

## [v3.3.1] - 2023-01-27
### Added
- Tests for PHP 8.0, 8.1, and 8.2
Expand Down

0 comments on commit 2b427af

Please sign in to comment.