chore: update eza-community/eza v0.19.4 to v0.20.0 #39643
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: test | |
on: | |
pull_request: | |
branches: [main] | |
permissions: {} | |
env: | |
AQUA_LOG_COLOR: always | |
jobs: | |
path-filter: | |
# Get changed files to filter jobs | |
outputs: | |
renovate-config-validator: ${{steps.changes.outputs.renovate-config-validator}} | |
check-files: ${{steps.changes.outputs.check-files}} | |
generate-registry: ${{steps.changes.outputs.generate-registry}} | |
json-schema: ${{steps.changes.outputs.json-schema}} | |
test-docker: ${{steps.changes.outputs.test-docker}} | |
runs-on: ubuntu-latest | |
permissions: {} | |
timeout-minutes: 15 | |
steps: | |
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
id: changes | |
with: | |
filters: | | |
renovate-config-validator: | |
- renovate.json5 | |
- .github/workflows/wc-renovate-config-validator.yaml | |
check-files: | |
- pkgs/**/pkg.yaml | |
- pkgs/**/registry.yaml | |
- .github/workflows/wc-check-files.yaml | |
generate-registry: | |
- aqua/generate-registry.yaml | |
- registry.yaml | |
- pkgs/**/registry.yaml | |
- .github/workflows/wc-generate-registry.yaml | |
json-schema: | |
- registry.yaml | |
- .github/workflows/wc-json-schema.yaml | |
test-docker: | |
- docker/* | |
- scripts/** | |
- cmdx.yaml | |
- .github/workflows/wc-test-docker.yaml | |
status-check: | |
# This job is used for main branch's branch protection rule's status check. | |
# If all dependent jobs succeed or are skipped this job succeeds. | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: | |
- enable-automerge-renovate | |
- renovate-config-validator | |
- check-files | |
- generate-registry | |
- json-schema | |
- prettier | |
- test-docker | |
- test | |
- lintnet | |
permissions: {} | |
if: failure() | |
steps: | |
- run: exit 1 | |
enable-automerge-renovate: | |
uses: ./.github/workflows/wc-enable-auto-merge.yaml | |
if: | | |
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 | |
check-files: | |
uses: ./.github/workflows/wc-check-files.yaml | |
needs: path-filter | |
if: ${{needs.path-filter.outputs.check-files == 'true'}} | |
permissions: {} | |
generate-registry: | |
uses: ./.github/workflows/wc-generate-registry.yaml | |
needs: path-filter | |
if: ${{needs.path-filter.outputs.generate-registry == 'true'}} | |
permissions: {} | |
json-schema: | |
uses: ./.github/workflows/wc-json-schema.yaml | |
needs: path-filter | |
if: ${{needs.path-filter.outputs.json-schema == 'true'}} | |
permissions: {} | |
prettier: | |
uses: ./.github/workflows/wc-prettier.yaml | |
permissions: {} | |
test-docker: | |
uses: ./.github/workflows/wc-test-docker.yaml | |
needs: path-filter | |
if: ${{needs.path-filter.outputs.test-docker == 'true'}} | |
ci-info: | |
uses: ./.github/workflows/wc-ci-info.yaml | |
lintnet: | |
uses: ./.github/workflows/wc-lintnet.yaml | |
test: | |
needs: ci-info | |
uses: ./.github/workflows/wc-test.yaml |