Skip to content

Commit f07ec1c

Browse files
authored
Merge branch '7.x' into reset_multifactor
2 parents 45e1dff + 753a6ce commit f07ec1c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/emulator-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
key: ${{ env.key }}
4040

4141
- name: Cache extensions
42-
uses: actions/cache@v4.2.1
42+
uses: actions/cache@v4.2.2
4343
with:
4444
path: ${{ steps.extcache.outputs.dir }}
4545
key: ${{ steps.extcache.outputs.key }}
@@ -82,7 +82,7 @@ jobs:
8282
run: firebase emulators:exec --only auth,database --project beste-firebase 'XDEBUG_MODE=coverage vendor/bin/phpunit --group=emulator --coverage-clover=coverage.xml --log-junit=test-report.xml'
8383

8484
- name: Upload code coverage
85-
uses: codecov/codecov-action@v5.3.1
85+
uses: codecov/codecov-action@v5.4.0
8686
with:
8787
token: ${{ secrets.CODECOV_TOKEN }}
8888
flags: emulator

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
key: ${{ env.key }}
4040

4141
- name: Cache extensions
42-
uses: actions/cache@v4.2.1
42+
uses: actions/cache@v4.2.2
4343
with:
4444
path: ${{ steps.extcache.outputs.dir }}
4545
key: ${{ steps.extcache.outputs.key }}
@@ -72,7 +72,7 @@ jobs:
7272
run: vendor/bin/phpunit --testsuite=integration --coverage-clover=coverage.xml --log-junit=test-report.xml --testdox
7373

7474
- name: Upload code coverage
75-
uses: codecov/codecov-action@v5.3.1
75+
uses: codecov/codecov-action@v5.4.0
7676
with:
7777
token: ${{ secrets.CODECOV_TOKEN }}
7878
flags: integration

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
key: ${{ env.key }}
5353

5454
- name: Cache extensions
55-
uses: actions/cache@v4.2.1
55+
uses: actions/cache@v4.2.2
5656
with:
5757
path: ${{ steps.extcache.outputs.dir }}
5858
key: ${{ steps.extcache.outputs.key }}
@@ -84,7 +84,7 @@ jobs:
8484
run: vendor/bin/phpunit --testsuite=unit --coverage-clover=coverage.xml --log-junit=test-report.xml --testdox
8585

8686
- name: Upload code coverage
87-
uses: codecov/codecov-action@v5.3.1
87+
uses: codecov/codecov-action@v5.4.0
8888
with:
8989
token: ${{ secrets.CODECOV_TOKEN }}
9090
flags: unit

src/Firebase/Messaging/RequestFactory.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ public function createRequest(Message $message, string $projectId, bool $validat
4848
->withBody($body)
4949
->withHeader('Content-Type', 'application/json; charset=UTF-8')
5050
->withHeader('Content-Length', (string) $body->getSize())
51+
->withHeader('Accept', 'application/json, text/plain;q=0.9')
5152
;
5253
}
5354

0 commit comments

Comments
 (0)