Running the following causes the workflow to fail with the error in the subject:
- name: Install composer dependencies
uses: php-actions/composer@v6
with:
php_version: '8.2'
args: --no-dev --no-interaction --prefer-dist --optimize-autoloader
I tried adding ACTION_TOKEN as an env variable but it still doesn't work:
- name: Install composer dependencies
uses: php-actions/composer@v6
with:
php_version: '8.2'
args: --no-dev --no-interaction --prefer-dist --optimize-autoloader
env:
ACTION_TOKEN: ${{ secrets.GITHUB_TOKEN }}
The action does NOT work even removing all optional parameters:
- name: Install composer dependencies
uses: php-actions/composer@v6
Running the following causes the workflow to fail with the error in the subject:
I tried adding
ACTION_TOKENas an env variable but it still doesn't work:The action does NOT work even removing all optional parameters: