Skip to content

Commit a9f80ec

Browse files
committed
fix: github action/cache
1 parent 4b0ca71 commit a9f80ec

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Cache Composer packages
5252
id: composer-cache
53-
uses: actions/cache@v2
53+
uses: actions/cache@v4
5454
with:
5555
path: vendor
5656
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

tests/Support/HttpClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function test_get_method()
1313

1414
$response = $http->get("https://www.oogle.com");
1515

16-
$this->assertEquals($response->statusCode(), 525);
16+
$this->assertEquals($response->statusCode(), 503);
1717
}
1818

1919
public function test_get_method_with_custom_headers()

0 commit comments

Comments
 (0)