diff --git a/.github/workflows/lint-check.yml b/.github/workflows/lint-check.yml index 3d3e140..58367b7 100644 --- a/.github/workflows/lint-check.yml +++ b/.github/workflows/lint-check.yml @@ -11,4 +11,4 @@ jobs: uses: actions/checkout@v3 - name: Checking PHP Syntax - uses: TheDragonCode/codestyler@v1.13.1 + uses: TheDragonCode/codestyler@v2.0.0 diff --git a/.github/workflows/lint-fixer.yml b/.github/workflows/lint-fixer.yml index 0a9c151..110a676 100644 --- a/.github/workflows/lint-fixer.yml +++ b/.github/workflows/lint-fixer.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v3 - name: Checking PHP Syntax - uses: TheDragonCode/codestyler@v1.13.1 + uses: TheDragonCode/codestyler@v2.0.0 with: github_token: ${{ secrets.COMPOSER_TOKEN }} fix: true diff --git a/Dockerfile b/Dockerfile index abfd3f5..1c6aa4a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ ARG INPUT_EDITORCONFIG ARG INPUT_DEPENDABOT ARG INPUT_NORMALIZE -RUN composer global require dragon-code/codestyler:^1.0 +RUN composer global require dragon-code/codestyler:^2.0 COPY shell /shell COPY entrypoint.sh /entrypoint.sh diff --git a/composer.json b/composer.json index 4e870e8..c7f82c9 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,8 @@ "require": { "php": "^8.0", "ext-json": "*", - "dragon-code/support": "^6.0", - "friendsofphp/php-cs-fixer": "^3.6", + "dragon-code/support": "^6.1", + "friendsofphp/php-cs-fixer": "^3.8", "symfony/console": "^5.0 || ^6.0", "symfony/yaml": "^5.0 || ^6.0" },