diff --git a/.gitea/workflows/quality.yml b/.gitea/workflows/quality.yml index e785610..10bf294 100644 --- a/.gitea/workflows/quality.yml +++ b/.gitea/workflows/quality.yml @@ -1,6 +1,10 @@ on: workflow_call: inputs: + image: + required: false + type: string + default: git.qlic.nl/qlic/quality:latest username: required: false type: string @@ -22,7 +26,7 @@ jobs: quality: runs-on: ubuntu-24.04 container: - image: git.qlic.nl/qlic/quality:latest + image: ${{ inputs.image }} credentials: username: ${{ inputs.username }} password: ${{ inputs.password }} @@ -55,6 +59,6 @@ jobs: - name: Run php cs fixer run: ./vendor/bin/php-cs-fixer fix --diff --dry-run - + - name: Run audit run: composer audit