From e7280c3567a349de765b4495ddb98b72854aa552 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 6 Dec 2021 08:18:51 +0100 Subject: [PATCH 1/2] README.md: Upgrade php-actions/composer and php-actions/phpstan --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f5918c..b160579 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: php-actions/composer@v5 # or alternative dependency management - - uses: php-actions/phpstan@v2 + - uses: php-actions/composer@v6 # or alternative dependency management + - uses: php-actions/phpstan@v3 # ... then your own project steps ... ``` From 785fc629319f10b272a34b23cbe94c5fb9a8729e Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Mon, 6 Dec 2021 08:20:16 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b160579..09d0200 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ jobs: This action is released with semantic version numbers, but also tagged so the latest major release's tag always points to the latest release within the matching major version. -Please feel free to use `uses: php-actions/phpstan@v3` to always run the latest version of v6, or `uses: php-actions/phpstan@v3.0.0` to specify the exact release. +Please feel free to use `uses: php-actions/phpstan@v3` to always run the latest version of v3, or `uses: php-actions/phpstan@v3.0.0` to specify the exact release. Example -------