Skip to content

Commit

Permalink
Bump CI workflows (#1405)
Browse files Browse the repository at this point in the history
  • Loading branch information
derrabus committed Mar 1, 2024
1 parent 833189d commit ebb383e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bc-check.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
name: "Roave BC Check"
runs-on: "ubuntu-22.04"
steps:
- uses: "actions/checkout@v3"
- uses: "actions/checkout@v4"
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coding-standards.yml
Expand Up @@ -26,4 +26,4 @@ on:
jobs:
coding-standards:
name: "Coding Standards"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@3.0.0"
uses: "doctrine/.github/.github/workflows/coding-standards.yml@4.0.0"
4 changes: 1 addition & 3 deletions .github/workflows/composer-lint.yml
Expand Up @@ -17,6 +17,4 @@ on:
jobs:
composer-lint:
name: "Composer Lint"
uses: "doctrine/.github/.github/workflows/composer-lint.yml@2.1.0"
with:
php-version: "8.1"
uses: "doctrine/.github/.github/workflows/composer-lint.yml@4.0.0"
11 changes: 6 additions & 5 deletions .github/workflows/continuous-integration.yml
Expand Up @@ -32,6 +32,7 @@ jobs:
php-version:
- "8.1"
- "8.2"
- "8.3"
dependencies:
- "highest"
stability:
Expand All @@ -42,7 +43,7 @@ jobs:
php-version: "8.1"
- dependencies: "highest"
stability: "dev"
php-version: "8.2"
php-version: "8.3"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -73,9 +74,9 @@ jobs:
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"

- name: "Upload coverage file"
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: "phpunit-${{ matrix.dependencies }}-${{ matrix.php-version }}.coverage"
name: "phpunit-${{ matrix.dependencies }}-${{ matrix.stability }}-${{ matrix.php-version }}.coverage"
path: "coverage.xml"

upload_coverage:
Expand All @@ -86,12 +87,12 @@ jobs:

steps:
- name: "Checkout"
uses: "actions/checkout@v3"
uses: "actions/checkout@v4"
with:
fetch-depth: 2

- name: "Download coverage files"
uses: "actions/download-artifact@v3"
uses: "actions/download-artifact@v4"
with:
path: "reports"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-on-milestone-closed.yml
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
name: "Git tag, release & create merge-up PR"
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@2.1.0"
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@4.0.0"
secrets:
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}
Expand Down

0 comments on commit ebb383e

Please sign in to comment.