Skip to content

Commit

Permalink
v4 PHP8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kawax committed Dec 9, 2022
1 parent b5de514 commit a800d22
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
with:
php-version: '8.1'
php-version: '8.2'
extensions: mbstring, bcmath
coverage: xdebug
- name: Install Composer dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:cli
FROM php:8.2-cli

# php
RUN apt-get update \
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| v1 | 7.4 |
| v2 | 8.0 |
| v3 | 8.1 |
| v4 | 8.2 |
| master | latest |

## Usage
Expand All @@ -34,7 +35,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: composer update action
uses: kawax/composer-update-action@master
uses: kawax/composer-update-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Expand All @@ -50,7 +51,7 @@ jobs:

```yaml
- name: composer update action
uses: kawax/composer-update-action@v2
uses: kawax/composer-update-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPOSER_PATH: /subdir
Expand Down

0 comments on commit a800d22

Please sign in to comment.