Skip to content

Commit 96e370b

Browse files
committed
updated github workflow
1 parent ec0455a commit 96e370b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/coding-style.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Nette Code Checker
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
- uses: shivammathur/setup-php@v2
1212
with:
1313
php-version: 8.0
@@ -21,11 +21,11 @@ jobs:
2121
name: Nette Coding Standard
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: 8.0
2828
coverage: none
2929

30-
- run: composer create-project nette/coding-standard temp/coding-standard ^3 --no-progress --ignore-platform-reqs
30+
- run: composer create-project nette/coding-standard temp/coding-standard ^3 --no-progress
3131
- run: php temp/coding-standard/ecs check

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: PHPStan
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- uses: shivammathur/setup-php@v2
1515
with:
1616
php-version: 8.0

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
--health-retries 5
9090
9191
steps:
92-
- uses: actions/checkout@v2
92+
- uses: actions/checkout@v3
9393
- uses: shivammathur/setup-php@v2
9494
with:
9595
php-version: ${{ matrix.php }}
@@ -106,7 +106,7 @@ jobs:
106106
- run: composer install --no-progress --prefer-dist
107107
- run: vendor/bin/tester -p phpdbg tests -s -C --coverage ./coverage.xml --coverage-src ./src
108108
- if: failure()
109-
uses: actions/upload-artifact@v2
109+
uses: actions/upload-artifact@v3
110110
with:
111111
name: output
112112
path: tests/**/output

0 commit comments

Comments
 (0)