@@ -19,11 +19,11 @@ jobs:
1919 runs-on : " ubuntu-latest"
2020 steps :
2121 - name : Checkout
22- uses : actions/checkout@v3
22+ uses : actions/checkout@v4
2323 - name : Setup PHP
2424 uses : shivammathur/setup-php@v2
2525 with :
26- php-version : ' 8.2 '
26+ php-version : ' 8.3 '
2727 coverage : none
2828 tools : composer-normalize
2929 env :
@@ -36,11 +36,11 @@ jobs:
3636 runs-on : " ubuntu-latest"
3737 steps :
3838 - name : Checkout
39- uses : actions/checkout@v3
39+ uses : actions/checkout@v4
4040 - name : Setup PHP
4141 uses : shivammathur/setup-php@v2
4242 with :
43- php-version : ' 8.2 '
43+ php-version : ' 8.3 '
4444 coverage : none
4545 tools : cs2pr, phpcs
4646 env :
@@ -53,11 +53,11 @@ jobs:
5353 runs-on : " ubuntu-latest"
5454 steps :
5555 - name : Checkout
56- uses : actions/checkout@v3
56+ uses : actions/checkout@v4
5757 - name : Setup PHP
5858 uses : shivammathur/setup-php@v2
5959 with :
60- php-version : ' 8.2 '
60+ php-version : ' 8.3 '
6161 coverage : none
6262 tools : cs2pr, php-cs-fixer
6363 env :
@@ -70,11 +70,11 @@ jobs:
7070 runs-on : " ubuntu-latest"
7171 steps :
7272 - name : Checkout
73- uses : actions/checkout@v3
73+ uses : actions/checkout@v4
7474 - name : Setup PHP
7575 uses : shivammathur/setup-php@v2
7676 with :
77- php-version : ' 8.2 '
77+ php-version : ' 8.3 '
7878 coverage : none
7979 tools : composer:v2, phpstan
8080 extensions : soap, gd
8484 id : composer-cache
8585 run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
8686 - name : Cache dependencies
87- uses : actions/cache@v3
87+ uses : actions/cache@v4
8888 with :
8989 path : ${{ steps.composer-cache.outputs.dir }}
9090 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
@@ -95,14 +95,14 @@ jobs:
9595 run : phpstan analyse --no-progress --verbose
9696
9797 tests :
98- name : Tests on PHP ${{ matrix.php-versions }}
98+ name : Tests on PHP ${{ matrix.php-version }}
9999 runs-on : " ubuntu-latest"
100100 strategy :
101101 matrix :
102- php-versions : ['7.3', '7.4', '8.0', '8.1', '8.2']
102+ php-version : ['7.3', '7.4', '8.0', '8.1', '8.2', '8.3 ']
103103 steps :
104104 - name : Checkout
105- uses : actions/checkout@v3
105+ uses : actions/checkout@v4
106106 with :
107107 fetch-depth : 0 # required for sudo-bot/action-scrutinizer
108108 - name : Install poppler-utils
@@ -112,7 +112,7 @@ jobs:
112112 - name : Setup PHP
113113 uses : shivammathur/setup-php@v2
114114 with :
115- php-version : ${{ matrix.php-versions }}
115+ php-version : ${{ matrix.php-version }}
116116 coverage : xdebug
117117 tools : composer:v2
118118 extensions : soap, gd
@@ -133,7 +133,7 @@ jobs:
133133 id : composer-cache
134134 run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
135135 - name : Cache dependencies
136- uses : actions/cache@v3
136+ uses : actions/cache@v4
137137 with :
138138 path : ${{ steps.composer-cache.outputs.dir }}
139139 key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
0 commit comments