Skip to content

Commit f428be2

Browse files
authored
Merge pull request #89 from WebFiori/dev
chore: Updated CI Configuration
2 parents 06164ce + c77ec70 commit f428be2

File tree

9 files changed

+36
-18
lines changed

9 files changed

+36
-18
lines changed

.github/workflows/php70.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/php71.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/php72.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,6 +65,8 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}
6971

7072

.github/workflows/php73.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,7 +65,9 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}
6971

7072
- name: SonarCloud
7173
uses: SonarSource/sonarcloud-github-action@master

.github/workflows/php74.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,7 +65,9 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}
6971

7072

7173

.github/workflows/php80.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/php81.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/php82.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/php83.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Clone Repo
31-
uses: actions/checkout@v1
31+
uses: actions/checkout@v4
3232

3333
- name: Setup PHP
3434
uses: shivammathur/setup-php@v2
@@ -65,4 +65,6 @@ jobs:
6565
run: phpunit
6666

6767
- name: CodeCov
68-
uses: codecov/codecov-action@v1
68+
uses: codecov/codecov-action@v4
69+
with:
70+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)