From eed58e349684dc9a13ddadc0fa764bb7881c505f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joda=20St=C3=B6=C3=9Fer?= Date: Tue, 7 Feb 2023 07:36:22 +0100 Subject: [PATCH] docs(github-action): improve & update (#59) * docs(github-action): update php to 8.1 * docs(github-actions): add composer install step --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e314f8a..0d6c0c1 100644 --- a/README.md +++ b/README.md @@ -97,7 +97,10 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: '8.0' + php-version: '8.1' + + - name: Install dependencies + run: composer install - name: Deploy uses: deployphp/action@v1