@@ -28,10 +28,10 @@ jobs:
28
28
tools : cs2pr
29
29
30
30
- name : Checkout code
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Install Composer dependencies
34
- uses : ramsey/composer-install@v2
34
+ uses : ramsey/composer-install@v3
35
35
with :
36
36
# Bust the cache at least once a month - output format: YYYY-MM.
37
37
custom-cache-suffix : $(date -u "+%Y-%m")
50
50
51
51
steps :
52
52
- name : Checkout code
53
- uses : actions/checkout@v3
53
+ uses : actions/checkout@v4
54
54
55
55
- name : Setup PHP
56
56
uses : shivammathur/setup-php@v2
65
65
fail-fast : true
66
66
67
67
- name : Install Composer dependencies
68
- uses : ramsey/composer-install@v2
68
+ uses : ramsey/composer-install@v3
69
69
with :
70
70
composer-options : " --no-dev"
71
71
# Bust the cache at least once a month - output format: YYYY-MM.
85
85
- name : Show info about the build phar with box-project/box
86
86
run : php box.phar info -l parallel-lint.phar
87
87
88
- - uses : actions/upload-artifact@v3
88
+ - uses : actions/upload-artifact@v4
89
89
with :
90
90
name : parallel-lint-phar
91
91
path : ./parallel-lint.phar
@@ -117,7 +117,7 @@ jobs:
117
117
118
118
steps :
119
119
- name : Checkout code
120
- uses : actions/checkout@v3
120
+ uses : actions/checkout@v4
121
121
122
122
- name : Setup PHP
123
123
uses : shivammathur/setup-php@v2
@@ -133,14 +133,14 @@ jobs:
133
133
134
134
- name : Install Composer dependencies
135
135
if : ${{ matrix.php != '8.4' }}
136
- uses : ramsey/composer-install@v2
136
+ uses : ramsey/composer-install@v3
137
137
with :
138
138
# Bust the cache at least once a month - output format: YYYY-MM.
139
139
custom-cache-suffix : $(date -u "+%Y-%m")
140
140
141
141
- name : " Install Composer dependencies (PHP 8.4, ignore PHP reqs)"
142
142
if : ${{ matrix.php == '8.4' }}
143
- uses : ramsey/composer-install@v2
143
+ uses : ramsey/composer-install@v3
144
144
with :
145
145
composer-options : --ignore-platform-req=php
146
146
custom-cache-suffix : $(date -u "+%Y-%m")
@@ -155,7 +155,7 @@ jobs:
155
155
- name : ' Run unit tests'
156
156
run : composer test
157
157
158
- - uses : actions/download-artifact@v3
158
+ - uses : actions/download-artifact@v4
159
159
with :
160
160
name : parallel-lint-phar
161
161
0 commit comments