Skip to content

Commit c134a0a

Browse files
committedFeb 10, 2024
ci: update actions/cache to v4
1 parent e96aebe commit c134a0a

File tree

4 files changed

+96
-156
lines changed

4 files changed

+96
-156
lines changed
 

‎.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3737

3838
- name: Cache dependencies
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
4242
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- add missing translations for Curaçao (Croatian) and Iran (Persian) (#496)
1111
- add missing Japanese translations for Curaçao and Kosovo (#498)
1212
- add missing Chinese translations (#498)
13+
- allow usage with Symfony 7.x (#516)
14+
- add PHP 8.3 version in CI checks (#516)
15+
- update `actions/cache` to v4 (#520)
1316
### Fixed
1417
- fix column count in CSV export (#497)
1518
- remove native names

‎composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"ext-dom": "*",
2727
"ext-gettext": "*",
2828
"php": ">=8.1",
29-
"symfony/console": "~5.4|~6.3|~7.0",
30-
"symfony/yaml": "~5.4|~6.3|~7.0"
29+
"symfony/console": "~5.4|~6.4|~7.0",
30+
"symfony/yaml": "~5.4|~6.4|~7.0"
3131
},
3232
"require-dev": {
3333
"roave/security-advisories": "dev-latest"

0 commit comments

Comments
 (0)
Failed to load comments.