Skip to content

Commit 33b6325

Browse files
authored
Merge pull request #31 from nick322/feature/add-cache
feat: add cache
2 parents 9f78a46 + aa1825a commit 33b6325

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

.github/workflows/tests.yml

+13
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@ jobs:
2828
- name: Checkout code
2929
uses: actions/checkout@v3
3030

31+
- name: Get Composer Cache Directory
32+
id: composer-cache
33+
run: |
34+
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
35+
36+
- name: Cache composer dependencies
37+
uses: actions/cache@v4
38+
with:
39+
path: ${{ steps.composer-cache.outputs.dir }}
40+
key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}-composer
41+
restore-keys: |
42+
${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}--composer
43+
3144
- name: Setup PHP
3245
uses: shivammathur/setup-php@v2
3346
with:

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,15 @@
3535
## 1.0.10 (2023-09-20)
3636

3737
* Fix password is not accepted [#18](https://github.com/nick322/secure-spreadsheet/issues/18)
38+
39+
## 1.0.13 (2024-11-12)
40+
41+
* PHP 8.3 support [#27](https://github.com/nick322/secure-spreadsheet/issues/27)
42+
43+
## 1.0.14 (2024-12-27)
44+
45+
* PHP 8.4 support [#29](https://github.com/nick322/secure-spreadsheet/issues/29)
46+
47+
## 1.0.15 (2025-02-17)
48+
49+
* cleanup composer.json from redundant data; fix dependencies by @gggeek in [#30](https://github.com/nick322/secure-spreadsheet/pull/30)

0 commit comments

Comments
 (0)