Compare commits

..

3 Commits

Author SHA1 Message Date
85811a09ab fix(ci): remove extra checks from php-composer (#70) 2025-03-13 21:50:32 +02:00
renovate[bot]
acba21a852 fix(github-action): update peter-evans/create-pull-request (v7.0.6 → v7.0.7) (#67)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-02 12:39:21 +02:00
renovate[bot]
9dd848978c fix(github-action): update actions/download-artifact (v4.1.0 → v4.1.9) (#66)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-03-02 08:27:57 +00:00
4 changed files with 8 additions and 27 deletions

25
.github/renovate.json vendored
View File

@@ -1,33 +1,20 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>ivuorinen/renovate-config"
],
"extends": ["github>ivuorinen/renovate-config"],
"packageRules": [
{
"matchUpdateTypes": [
"minor",
"patch"
],
"matchUpdateTypes": ["minor", "patch"],
"matchCurrentVersion": "!/^0/",
"automerge": true
},
{
"matchDepTypes": [
"devDependencies"
],
"matchDepTypes": ["devDependencies"],
"automerge": true
}
],
"schedule": [
"before 4am on monday"
],
"schedule": ["before 4am on monday"],
"vulnerabilityAlerts": {
"labels": [
"security"
],
"assignees": [
"ivuorinen"
]
"labels": ["security"],
"assignees": ["ivuorinen"]
}
}

View File

@@ -133,7 +133,7 @@ jobs:
env.APPLY_FIXES_MODE == 'pull_request' &&
(github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) &&
!contains(github.event.head_commit.message, 'skip fix')
uses: peter-evans/create-pull-request@67ccf781d68cd99b580ae25a5c18a1cc84ffff1f # v7.0.6
uses: peter-evans/create-pull-request@dd2324fc52d5d43c699a5636bcf19fceaa70c284 # v7.0.7
id: cpr
with:
token: ${{ secrets.FIXIMUS_TOKEN || secrets.GITHUB_TOKEN }}

View File

@@ -168,7 +168,7 @@ jobs:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Download scan results
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.0
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
with:
path: ./results

View File

@@ -238,12 +238,6 @@ runs:
exit 1
fi
# Check for any PHP errors in vendor
find vendor -name "*.php" -type f -exec php -l {} \; > /dev/null
# Verify Composer installation
composer validate --no-check-all --strict
- name: Generate Optimized Autoloader
if: success()
shell: bash