File tree Expand file tree Collapse file tree 6 files changed +190
-101
lines changed Expand file tree Collapse file tree 6 files changed +190
-101
lines changed Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v3
11
11
12
12
- name : Cache Composer dependencies
13
- uses : actions/cache@v2
13
+ uses : actions/cache@v3
14
14
with :
15
15
path : /tmp/composer-cache
16
16
key : ${{ runner.os }}-${{ hashFiles('**/composer.lock') }}
17
17
18
- - uses : php-actions/composer@v5
18
+ - uses : php-actions/composer@v6
19
19
20
20
- name : Archive build
21
21
run : mkdir /tmp/github-actions/ && tar -cvf /tmp/github-actions/build.tar ./
22
22
23
23
- name : Upload build archive for test runners
24
- uses : actions/upload-artifact@v2
24
+ uses : actions/upload-artifact@v3
25
25
with :
26
26
name : build-artifact
27
27
path : /tmp/github-actions
31
31
needs : [composer]
32
32
33
33
steps :
34
- - uses : actions/download-artifact@v2
34
+ - uses : actions/download-artifact@v3
35
35
with :
36
36
name : build-artifact
37
37
path : /tmp/github-actions
40
40
run : tar -xvf /tmp/github-actions/build.tar ./
41
41
42
42
- name : PHP Static Analysis
43
- uses : php-actions/phpstan@v2
43
+ uses : php-actions/phpstan@v3
44
44
with :
45
45
path : src/
46
46
49
49
needs : [ composer ]
50
50
51
51
steps :
52
- - uses : actions/download-artifact@v2
52
+ - uses : actions/download-artifact@v3
53
53
with :
54
54
name : build-artifact
55
55
path : /tmp/github-actions
You can’t perform that action at this time.
0 commit comments