diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 08094bc..e8dc81a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,6 +28,19 @@ jobs: - name: Checkout code uses: actions/checkout@v3 + - name: Get Composer Cache Directory + id: composer-cache + run: | + echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT + + - name: Cache composer dependencies + uses: actions/cache@v4 + with: + path: ${{ steps.composer-cache.outputs.dir }} + key: ${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}-composer + restore-keys: | + ${{ runner.os }}-${{ matrix.php }}-${{ matrix.stability }}--composer + - name: Setup PHP uses: shivammathur/setup-php@v2 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 726217d..39a5153 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,3 +35,15 @@ ## 1.0.10 (2023-09-20) * Fix password is not accepted [#18](https://github.com/nick322/secure-spreadsheet/issues/18) + +## 1.0.13 (2024-11-12) + +* PHP 8.3 support [#27](https://github.com/nick322/secure-spreadsheet/issues/27) + +## 1.0.14 (2024-12-27) + +* PHP 8.4 support [#29](https://github.com/nick322/secure-spreadsheet/issues/29) + +## 1.0.15 (2025-02-17) + +* cleanup composer.json from redundant data; fix dependencies by @gggeek in [#30](https://github.com/nick322/secure-spreadsheet/pull/30) \ No newline at end of file