Skip to content

Commit 02d0940

Browse files
authored
Merge pull request #2566 from franmomu/bump_workflows
Bump workflows
2 parents 91539d8 + da55343 commit 02d0940

File tree

5 files changed

+15
-17
lines changed

5 files changed

+15
-17
lines changed

.github/workflows/coding-standards.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ on:
1010
jobs:
1111
coding-standards:
1212
name: "Coding Standards"
13-
uses: "doctrine/.github/.github/workflows/[email protected]"
14-
with:
15-
php-version: "8.2"
13+
uses: "doctrine/.github/.github/workflows/[email protected]"

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: "Checkout"
49-
uses: "actions/checkout@v3"
49+
uses: "actions/checkout@v4"
5050
with:
5151
fetch-depth: 2
5252

@@ -59,7 +59,7 @@ jobs:
5959
key: "extcache-v1"
6060

6161
- name: Cache extensions
62-
uses: actions/cache@v2
62+
uses: actions/cache@v3
6363
with:
6464
path: ${{ steps.extcache.outputs.dir }}
6565
key: ${{ steps.extcache.outputs.key }}
@@ -88,7 +88,7 @@ jobs:
8888
composer-options: "--prefer-dist"
8989

9090
- name: "Upload composer.lock as build artifact"
91-
uses: actions/upload-artifact@v2
91+
uses: actions/upload-artifact@v3
9292
with:
9393
name: composer.lock
9494
path: composer.lock

.github/workflows/performance.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
performance-tests:
1111
name: "Performance Tests"
12-
runs-on: "ubuntu-20.04"
12+
runs-on: "ubuntu-22.04"
1313

1414
strategy:
1515
matrix:
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: "Checkout"
27-
uses: "actions/checkout@v3"
27+
uses: "actions/checkout@v4"
2828

2929
- name: Setup cache environment
3030
id: extcache
@@ -35,7 +35,7 @@ jobs:
3535
key: "extcache-v1"
3636

3737
- name: Cache extensions
38-
uses: actions/cache@v2
38+
uses: actions/cache@v3
3939
with:
4040
path: ${{ steps.extcache.outputs.dir }}
4141
key: ${{ steps.extcache.outputs.key }}

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

Lines changed: 1 addition & 1 deletion
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.1.0"
1212
secrets:
1313
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }}
1414
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }}

.github/workflows/static-analysis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ on:
1010
jobs:
1111
static-analysis-phpstan:
1212
name: "Static Analysis with PHPStan"
13-
runs-on: "ubuntu-20.04"
13+
runs-on: "ubuntu-22.04"
1414

1515
strategy:
1616
matrix:
1717
php-version:
18-
- "8.1"
18+
- "8.2"
1919

2020
steps:
2121
- name: "Checkout code"
22-
uses: "actions/checkout@v3"
22+
uses: "actions/checkout@v4"
2323

2424
- name: Setup cache environment
2525
id: extcache
@@ -30,7 +30,7 @@ jobs:
3030
key: "extcache-v1"
3131

3232
- name: Cache extensions
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3
3434
with:
3535
path: ${{ steps.extcache.outputs.dir }}
3636
key: ${{ steps.extcache.outputs.key }}
@@ -60,16 +60,16 @@ jobs:
6060

6161
static-analysis-psalm:
6262
name: "Static Analysis with Psalm"
63-
runs-on: "ubuntu-20.04"
63+
runs-on: "ubuntu-22.04"
6464

6565
strategy:
6666
matrix:
6767
php-version:
68-
- "8.1"
68+
- "8.2"
6969

7070
steps:
7171
- name: "Checkout code"
72-
uses: "actions/checkout@v3"
72+
uses: "actions/checkout@v4"
7373

7474
- name: "Install PHP"
7575
uses: "shivammathur/setup-php@v2"

0 commit comments

Comments
 (0)