Skip to content

Commit 2280755

Browse files
committed
Bump GitHub actions
Signed-off-by: William Desportes <williamdes@wdes.fr>
1 parent 6dfd79d commit 2280755

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.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,15 +32,15 @@ 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.1
3737
uses: shivammathur/setup-php@v2
3838
with:
3939
php-version: 7.1
4040
tools: composer:v2
4141
extensions: dbase
4242
- name: Cache module
43-
uses: actions/cache@v2
43+
uses: actions/cache@v3
4444
with:
4545
path: ~/.composer/cache/
4646
key: composer-cache

.github/workflows/lint-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint-docs:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: lint php documentation
1616
uses: sudo-bot/action-doctum@v5
1717
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
include:
2424
- { php-version: 'nightly', php-extensions: '', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
with:
2828
# Fetch some commits for Scrutinizer coverage upload
2929
fetch-depth: 15
@@ -34,7 +34,7 @@ jobs:
3434
extensions: ${{ matrix.php-extensions }}
3535
coverage: xdebug
3636
- name: Cache module
37-
uses: actions/cache@v2
37+
uses: actions/cache@v3
3838
with:
3939
path: ~/.composer/cache/
4040
key: composer-cache

0 commit comments

Comments
 (0)