Skip to content

Commit 9df61d8

Browse files
authored
Update GitHub actions dependencies (#861)
* Bump codecov/codecov-action * Bump PHP to 8.3
1 parent 157aaa9 commit 9df61d8

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,10 @@ jobs:
6868
- name: Run phpunit
6969
run: vendor/bin/phpunit --coverage-clover=coverage.xml --coverage-filter=src/Sentry
7070

71-
- name: Upload code coverage
72-
uses: codecov/codecov-action@v3
71+
- name: Upload coverage to Codecov
72+
uses: codecov/codecov-action@v4
73+
with:
74+
token: ${{ secrets.CODECOV_TOKEN }}
7375

7476
phpunit-legacy:
7577
runs-on: ubuntu-latest
@@ -158,5 +160,7 @@ jobs:
158160
- name: Run phpunit
159161
run: vendor/bin/phpunit --coverage-clover=coverage.xml --whitelist=src/Sentry
160162

161-
- name: Upload code coverage
162-
uses: codecov/codecov-action@v3
163+
- name: Upload coverage to Codecov
164+
uses: codecov/codecov-action@v4
165+
with:
166+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/cs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: '8.2'
24+
php-version: '8.3'
2525

2626
- name: Install dependencies
2727
run: composer update --no-progress --no-interaction --prefer-dist
@@ -39,7 +39,7 @@ jobs:
3939
- name: Setup PHP
4040
uses: shivammathur/setup-php@v2
4141
with:
42-
php-version: '8.2'
42+
php-version: '8.3'
4343

4444
- name: Install dependencies
4545
run: composer update --no-progress --no-interaction --prefer-dist

0 commit comments

Comments
 (0)