Skip to content

Commit

Permalink
Bump PHP CS Fixer (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
gillesperrin authored Jan 25, 2023
1 parent 74cd2d7 commit ee4e8c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM php:8.0.1-alpine
FROM --platform=linux/amd64 php:8.1-alpine

LABEL "com.github.actions.name"="PHP-CS-Fixer"
LABEL "com.github.actions.description"="check php files"
LABEL "com.github.actions.icon"="check"
LABEL "com.github.actions.color"="blue"

RUN wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v2.18.3/php-cs-fixer.phar -O php-cs-fixer \
RUN wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.13.0/php-cs-fixer.phar -O php-cs-fixer \
&& chmod a+x php-cs-fixer \
&& mv php-cs-fixer /usr/local/bin/php-cs-fixer

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ version: '3.8'
services:
php-cs-fixer:
build: .
image: public.ecr.aws/u9q7y3l4/github-actions-php-cs-fixer
image: public.ecr.aws/u9q7y3l4/github-actions-php-cs-fixer:v3.13.0

0 comments on commit ee4e8c8

Please sign in to comment.