Skip to content

Commit ed9082c

Browse files
committed
Merge branch 'feature/ghactions-update-various-actions' of https://github.com/jrfnl/PHP_CodeSniffer
2 parents a6704c2 + 37a1a98 commit ed9082c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424

2525
- name: Install PHP
2626
uses: shivammathur/setup-php@v2

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2
@@ -39,7 +39,7 @@ jobs:
3939
run: php scripts/build-phar.php
4040

4141
- name: Upload the PHPCS phar
42-
uses: actions/upload-artifact@v2
42+
uses: actions/upload-artifact@v3
4343
if: ${{ success() && matrix.php == '8.0' }}
4444
with:
4545
name: phpcs-phar
@@ -48,7 +48,7 @@ jobs:
4848
retention-days: 28
4949

5050
- name: Upload the PHPCBF phar
51-
uses: actions/upload-artifact@v2
51+
uses: actions/upload-artifact@v3
5252
if: ${{ success() && matrix.php == '8.0' }}
5353
with:
5454
name: phpcbf-phar
@@ -89,7 +89,7 @@ jobs:
8989

9090
steps:
9191
- name: Checkout code
92-
uses: actions/checkout@v2
92+
uses: actions/checkout@v3
9393

9494
- name: Setup ini config
9595
id: set_ini
@@ -159,7 +159,7 @@ jobs:
159159
run: composer validate --no-check-all --strict
160160

161161
- name: Download the PHPCS phar
162-
uses: actions/download-artifact@v2
162+
uses: actions/download-artifact@v3
163163
with:
164164
name: phpcs-phar
165165

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626

2727
- name: Install xmllint
2828
run: |
@@ -65,7 +65,7 @@ jobs:
6565

6666
steps:
6767
- name: Checkout code
68-
uses: actions/checkout@v2
68+
uses: actions/checkout@v3
6969

7070
- name: Install PHP
7171
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)