Skip to content

Commit c6f79a4

Browse files
Chris53897Chris8934
authored andcommitted
chore: fix ci deprecations, run phpcs on php 8.2 (#140)
Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
1 parent a5438bd commit c6f79a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@v2
1919
with:
20-
php-version: 8.1
20+
php-version: 8.2
2121
tools: phpcs
2222

2323
- name: Lint
@@ -41,10 +41,10 @@ jobs:
4141

4242
- name: Get composer cache directory
4343
id: composer-cache
44-
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
44+
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4545

4646
- name: Cache composer dependencies
47-
uses: actions/cache@v2
47+
uses: actions/cache@v3
4848
with:
4949
path: ${{ steps.composer-cache.outputs.dir }}
5050
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}

0 commit comments

Comments
 (0)