Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit fdd22df

Browse files
committed
ci: bump actions/checkout and actions/cache to v3
1 parent a856301 commit fdd22df

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
name: Lint file
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
- name: Use php 7.1
1212
uses: shivammathur/setup-php@v2
1313
with:
1414
php-version: 7.1
1515
- name: Validate composer.json and composer.lock
1616
run: composer validate
1717
- name: Cache module
18-
uses: actions/cache@v2
18+
uses: actions/cache@v3
1919
with:
2020
path: ~/.composer/cache/
2121
key: composer-cache
@@ -28,13 +28,13 @@ jobs:
2828
name: Analyse files
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v2
31+
- uses: actions/checkout@v3
3232
- name: Use php 7.4
3333
uses: shivammathur/setup-php@v2
3434
with:
3535
php-version: 7.4
3636
- name: Cache module
37-
uses: actions/cache@v2
37+
uses: actions/cache@v3
3838
with:
3939
path: ~/.composer/cache/
4040
key: composer-cache

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
include:
2121
- { php-version: 'nightly', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
- name: Use php ${{ matrix.php-version }}
2525
uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: ${{ matrix.php-version }}
2828
coverage: xdebug
2929
- name: Cache module
30-
uses: actions/cache@v2
30+
uses: actions/cache@v3
3131
with:
3232
path: ~/.composer/cache/
3333
key: composer-cache

0 commit comments

Comments
 (0)