File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: facades
3
3
on :
4
4
push :
5
5
branches :
6
- - ' master'
6
+ - " master"
7
7
8
8
jobs :
9
9
update :
16
16
17
17
steps :
18
18
- name : Checkout code
19
- uses : actions/checkout@v3
19
+ uses : actions/checkout@v4
20
20
21
21
- name : Setup PHP
22
22
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 22
22
name : PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} (w/ ${{ matrix.stability }})
23
23
steps :
24
24
- name : Checkout code
25
- uses : actions/checkout@v2
25
+ uses : actions/checkout@v4
26
26
27
27
- name : Setup PHP
28
28
uses : shivammathur/setup-php@v2
34
34
coverage : none
35
35
36
36
- name : Set Minimum PHP 8.1 Versions
37
- uses : nick-invision/retry@v1
37
+ uses : nick-invision/retry@v3
38
38
with :
39
39
timeout_minutes : 5
40
40
max_attempts : 5
44
44
if : matrix.php >= 8.1 && matrix.stability == 'prefer-lowest'
45
45
46
46
- name : Set Minimum PHP 8.2 Versions
47
- uses : nick-invision/retry@v1
47
+ uses : nick-invision/retry@v3
48
48
with :
49
49
timeout_minutes : 5
50
50
max_attempts : 5
53
53
if : matrix.php >= 8.2 && matrix.stability == 'prefer-lowest'
54
54
55
55
- name : Set Minimum PHP 8.2 Versions and Laravel > 11
56
- uses : nick-invision/retry@v1
56
+ uses : nick-invision/retry@v3
57
57
with :
58
58
timeout_minutes : 5
59
59
max_attempts : 5
@@ -62,14 +62,14 @@ jobs:
62
62
if : matrix.php >= 8.2 && matrix.stability == 'prefer-lowest' && matrix.laravel >= 11
63
63
64
64
- name : Set Laravel version
65
- uses : nick-invision/retry@v1
65
+ uses : nick-invision/retry@v3
66
66
with :
67
67
timeout_minutes : 5
68
68
max_attempts : 5
69
69
command : composer require "laravel/framework=^${{ matrix.laravel }}" --no-interaction --no-update
70
70
71
71
- name : Install dependencies
72
- uses : nick-invision/retry@v1
72
+ uses : nick-invision/retry@v3
73
73
with :
74
74
timeout_minutes : 5
75
75
max_attempts : 5
You can’t perform that action at this time.
0 commit comments