Skip to content

Commit a46d7df

Browse files
committed
Updated GitHub Actions
1 parent 9de07b8 commit a46d7df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,28 +28,28 @@ jobs:
2828
extensions: intl, xsl
2929

3030
- name: Checkout
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232

3333
- name: Get composer cache directory
3434
id: composer-cache
3535
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3636

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

4444
- name: Cache php-cs-fixer data
45-
uses: actions/cache@v3
45+
uses: actions/cache@v4
4646
with:
4747
path: .php_cs_cache
4848
key: "php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}"
4949
restore-keys: "php-${{ matrix.php-version }}-php-cs-fixer-"
5050

5151
- name: Cache phpstan data
52-
uses: actions/cache@v3
52+
uses: actions/cache@v4
5353
with:
5454
path: .phpstan_cache
5555
key: "php-${{ matrix.php-version }}-phpstan-${{ github.sha }}"

0 commit comments

Comments
 (0)