Skip to content

chore(deps): update dependency aquaproj/aqua-registry to v4.184.0 #291

chore(deps): update dependency aquaproj/aqua-registry to v4.184.0

chore(deps): update dependency aquaproj/aqua-registry to v4.184.0 #291

Workflow file for this run

---
name: test
on: pull_request
permissions: {}
jobs:
path-filter:
# Get changed files to filter jobs
outputs:
update-aqua-checksums: ${{steps.changes.outputs.update-aqua-checksums}}
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}}
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
update-aqua-checksums:
- aqua.yaml
- aqua/*.yaml
- aqua-checksums.json
- .github/workflows/test.yaml
renovate-config-validator:
- renovate.json5
- .github/workflows/wc-renovate-config-validator.yaml
- .github/workflows/test.yaml
status-check:
uses: ./.github/workflows/wc-status-check.yaml
needs:
- renovate-config-validator
- update-aqua-checksums
- test
permissions: {}
if: failure()
enable-auto-merge:
uses: ./.github/workflows/wc-enable-auto-merge.yaml
permissions: {}
needs:
- status-check
if: |
! failure() && ! cancelled() && github.event.pull_request.user.login == 'renovate[bot]' && contains(github.event.pull_request.body, ' **Automerge**: Enabled.')
secrets:
gh_app_id: ${{secrets.APP_ID}}
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}}
renovate-config-validator:
uses: ./.github/workflows/wc-renovate-config-validator.yaml
needs: path-filter
if: needs.path-filter.outputs.renovate-config-validator == 'true'
permissions:
contents: read
update-aqua-checksums:
needs: path-filter
if: needs.path-filter.outputs.update-aqua-checksums == 'true'
uses: ./.github/workflows/wc-update-aqua-checksums.yaml
permissions:
contents: read
secrets:
gh_app_id: ${{secrets.APP_ID}}
gh_app_private_key: ${{secrets.APP_PRIVATE_KEY}}
test:
uses: ./.github/workflows/wc-test.yaml
permissions: {}