File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : Ubuntu-22.04
12
12
steps :
13
13
- name : Checkout code
14
- uses : actions/checkout@v2
14
+ uses : actions/checkout@v4
15
15
16
16
- name : Fetch master from where the PR started
17
17
run : git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
37
37
38
38
steps :
39
39
- name : Checkout code
40
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v4
41
41
42
42
- name : Set up PHP
43
43
uses : shivammathur/setup-php@v2
Original file line number Diff line number Diff line change 10
10
11
11
steps :
12
12
- name : Checkout code
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v4
14
14
15
15
- name : Cache PHPStan
16
16
uses : actions/cache@v2
42
42
43
43
steps :
44
44
- name : Checkout code
45
- uses : actions/checkout@v2
45
+ uses : actions/checkout@v4
46
46
47
47
- name : Cache PhpCsFixer
48
48
uses : actions/cache@v2
66
66
runs-on : ubuntu-22.04
67
67
steps :
68
68
- name : Checkout code
69
- uses : actions/checkout@v2
69
+ uses : actions/checkout@v4
70
70
71
71
- name : Cache Psalm
72
72
uses : actions/cache@v2
@@ -103,7 +103,7 @@ jobs:
103
103
tools : composer-normalize
104
104
105
105
- name : Checkout code
106
- uses : actions/checkout@v2
106
+ uses : actions/checkout@v4
107
107
108
108
- name : Normalize
109
109
run : |
Original file line number Diff line number Diff line change @@ -189,9 +189,9 @@ public function handle($event, Context $context)
189
189
190
190
// Check the lambda result contains the error message
191
191
$ error = json_decode ((string ) $ eventFailureLog ->getBody (), true );
192
- $ this ->assertSame ('Error while calling the Lambda runtime API: The requested URL returned error: 400 Bad Request ' , $ error ['errorMessage ' ]);
192
+ $ this ->assertSame ('Error while calling the Lambda runtime API: The requested URL returned error: 400 ' , $ error ['errorMessage ' ]);
193
193
194
- $ this ->assertErrorInLogs ('Exception ' , 'Error while calling the Lambda runtime API: The requested URL returned error: 400 Bad Request ' );
194
+ $ this ->assertErrorInLogs ('Exception ' , 'Error while calling the Lambda runtime API: The requested URL returned error: 400 ' );
195
195
}
196
196
197
197
public function test function results that cannot be encoded are reported as invocation errors ()
You can’t perform that action at this time.
0 commit comments