Skip to content

Commit ebb383e

Browse files
authored
Bump CI workflows (#1405)
1 parent 833189d commit ebb383e

5 files changed

+10
-11
lines changed

.github/workflows/bc-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "Roave BC Check"
2121
runs-on: "ubuntu-22.04"
2222
steps:
23-
- uses: "actions/checkout@v3"
23+
- uses: "actions/checkout@v4"
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ on:
2626
jobs:
2727
coding-standards:
2828
name: "Coding Standards"
29-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@3.0.0"
29+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@4.0.0"

.github/workflows/composer-lint.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,4 @@ on:
1717
jobs:
1818
composer-lint:
1919
name: "Composer Lint"
20-
uses: "doctrine/.github/.github/workflows/[email protected]"
21-
with:
22-
php-version: "8.1"
20+
uses: "doctrine/.github/.github/workflows/[email protected]"

.github/workflows/continuous-integration.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ jobs:
3232
php-version:
3333
- "8.1"
3434
- "8.2"
35+
- "8.3"
3536
dependencies:
3637
- "highest"
3738
stability:
@@ -42,7 +43,7 @@ jobs:
4243
php-version: "8.1"
4344
- dependencies: "highest"
4445
stability: "dev"
45-
php-version: "8.2"
46+
php-version: "8.3"
4647

4748
steps:
4849
- name: "Checkout"
@@ -73,9 +74,9 @@ jobs:
7374
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
7475

7576
- name: "Upload coverage file"
76-
uses: "actions/upload-artifact@v3"
77+
uses: "actions/upload-artifact@v4"
7778
with:
78-
name: "phpunit-${{ matrix.dependencies }}-${{ matrix.php-version }}.coverage"
79+
name: "phpunit-${{ matrix.dependencies }}-${{ matrix.stability }}-${{ matrix.php-version }}.coverage"
7980
path: "coverage.xml"
8081

8182
upload_coverage:
@@ -86,12 +87,12 @@ jobs:
8687

8788
steps:
8889
- name: "Checkout"
89-
uses: "actions/checkout@v3"
90+
uses: "actions/checkout@v4"
9091
with:
9192
fetch-depth: 2
9293

9394
- name: "Download coverage files"
94-
uses: "actions/download-artifact@v3"
95+
uses: "actions/download-artifact@v4"
9596
with:
9697
path: "reports"
9798

.github/workflows/release-on-milestone-closed.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
release:
1010
name: "Git tag, release & create merge-up PR"
11-
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@2.1.0"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@4.0.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

0 commit comments

Comments
 (0)