Skip to content

Commit e6b97f5

Browse files
authored
Bump workflows (#439)
1 parent 3a4e1df commit e6b97f5

4 files changed

+11
-11
lines changed

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
coding-standards:
1313
name: "Coding Standards"
14-
uses: "doctrine/.github/.github/workflows/coding-standards.yml@1.4.1"
14+
uses: "doctrine/.github/.github/workflows/coding-standards.yml@3.0.0"

.github/workflows/continuous-integration.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
phpunit:
1616
name: "PHPUnit"
17-
runs-on: "ubuntu-20.04"
17+
runs-on: "ubuntu-22.04"
1818

1919
services:
2020
mongodb:
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: "Checkout"
41-
uses: "actions/checkout@v2"
41+
uses: "actions/checkout@v3"
4242
with:
4343
fetch-depth: 2
4444

@@ -51,7 +51,7 @@ jobs:
5151
ini-values: "zend.assertions=1"
5252

5353
- name: "Install dependencies with Composer"
54-
uses: "ramsey/composer-install@v1"
54+
uses: "ramsey/composer-install@v2"
5555
with:
5656
dependency-versions: "${{ matrix.dependencies }}"
5757
composer-options: "--prefer-dist"
@@ -60,29 +60,29 @@ jobs:
6060
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
6161

6262
- name: "Upload coverage file"
63-
uses: "actions/upload-artifact@v2"
63+
uses: "actions/upload-artifact@v3"
6464
with:
6565
name: "phpunit-${{ matrix.php-version }}.coverage"
6666
path: "coverage.xml"
6767

6868
upload_coverage:
6969
name: "Upload coverage to Codecov"
70-
runs-on: "ubuntu-20.04"
70+
runs-on: "ubuntu-22.04"
7171
needs:
7272
- "phpunit"
7373

7474
steps:
7575
- name: "Checkout"
76-
uses: "actions/checkout@v2"
76+
uses: "actions/checkout@v3"
7777
with:
7878
fetch-depth: 2
7979

8080
- name: "Download coverage files"
81-
uses: "actions/download-artifact@v2"
81+
uses: "actions/download-artifact@v3"
8282
with:
8383
path: "reports"
8484

8585
- name: "Upload to Codecov"
86-
uses: "codecov/codecov-action@v1"
86+
uses: "codecov/codecov-action@v3"
8787
with:
8888
directory: "reports"

.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@1.4.1"
11+
uses: "doctrine/.github/.github/workflows/release-on-milestone-closed.yml@3.0.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ on:
1111
jobs:
1212
static-analysis:
1313
name: "Static Analysis"
14-
uses: "doctrine/.github/.github/workflows/static-analysis.yml@1.4.1"
14+
uses: "doctrine/.github/.github/workflows/static-analysis.yml@3.0.0"

0 commit comments

Comments
 (0)