File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 8
8
strategy :
9
9
fail-fast : true
10
10
matrix :
11
- php : [8.1, 8.0, 7.4]
11
+ php : [8.2, 8. 1, 8.0, 7.4]
12
12
dependency-version : [prefer-stable]
13
13
os : [ubuntu-latest]
14
14
15
15
name : ${{ matrix.os }} - PHP${{ matrix.php }} - ${{ matrix.dependency-version }}
16
16
17
17
steps :
18
18
- name : Checkout code
19
- uses : actions/checkout@v2
19
+ uses : actions/checkout@v3
20
20
21
21
- name : Cache dependencies
22
- uses : actions/cache@v2
22
+ uses : actions/cache@v3
23
23
with :
24
24
path : ~/.composer/cache/files
25
25
key : dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
@@ -32,16 +32,13 @@ jobs:
32
32
coverage : none
33
33
34
34
- name : Setup Java
35
- uses : actions/setup-java@v2
35
+ uses : actions/setup-java@v3
36
36
with :
37
37
distribution : ' temurin'
38
38
java-version : ' 11'
39
39
40
40
- name : Download vnu checker
41
- run : wget https://github.com/validator/validator/releases/download/20.6.30/vnu.jar_20.6.30.zip
42
-
43
- - name : Unzip jar file
44
- run : unzip vnu.jar_20.6.30.zip
41
+ run : wget https://github.com/validator/validator/releases/download/latest/vnu.jar
45
42
46
43
- name : Run Nu Html Checker (v.Nu)
47
44
run : java -cp ./dist/vnu.jar -Xss1024k -Dnu.validator.servlet.bind-address=127.0.0.1 nu.validator.servlet.Main 8888 &
Original file line number Diff line number Diff line change 12
12
}
13
13
],
14
14
"require" : {
15
- "php" : " >=7.4 <8.2 " ,
15
+ "php" : " >=7.4 <8.3 " ,
16
16
"rexxars/html-validator" : " >=2.2"
17
17
},
18
18
"config" : {
You can’t perform that action at this time.
0 commit comments