File tree 2 files changed +25
-0
lines changed
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change 28
28
- name : Checkout code
29
29
uses : actions/checkout@v3
30
30
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
+
31
44
- name : Setup PHP
32
45
uses : shivammathur/setup-php@v2
33
46
with :
Original file line number Diff line number Diff line change 35
35
## 1.0.10 (2023-09-20)
36
36
37
37
* 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 )
You can’t perform that action at this time.
0 commit comments