Skip to content

Commit bb3d581

Browse files
committed
Bump GitHub actions
Signed-off-by: William Desportes <[email protected]>
1 parent c0d0dd1 commit bb3d581

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/lint-and-analyse-php.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint-php:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Use php 7.1
1616
uses: shivammathur/setup-php@v2
1717
with:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Validate composer.json and composer.lock
2121
run: composer validate
2222
- name: Cache module
23-
uses: actions/cache@v2
23+
uses: actions/cache@v3
2424
with:
2525
path: ~/.composer/cache/
2626
key: composer-cache
@@ -32,14 +32,14 @@ jobs:
3232
analyse-php:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636
- name: Use php 7.2
3737
uses: shivammathur/setup-php@v2
3838
with:
3939
php-version: 7.2
4040
tools: composer:v2
4141
- name: Cache module
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: ~/.composer/cache/
4545
key: composer-cache

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ jobs:
2222
include:
2323
- { php-version: '8.1', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- name: Use php ${{ matrix.php-version }}
2727
uses: shivammathur/setup-php@v2
2828
with:
2929
php-version: ${{ matrix.php-version }}
3030
extensions: mbstring
3131
coverage: xdebug
3232
- name: Cache module
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/.composer/cache/
3636
key: composer-cache
@@ -39,7 +39,7 @@ jobs:
3939
- name: Run php tests
4040
run: composer run phpunit
4141
- name: Send coverage
42-
uses: codecov/codecov-action@v1
42+
uses: codecov/codecov-action@v3
4343
with:
4444
flags: unit-${{ matrix.php-version }}-${{ matrix.os }}
4545
name: phpunit-${{ matrix.php-version }}-${{ matrix.os }}

0 commit comments

Comments
 (0)