chore(deps): update ghcr.io/visualon/renovate docker tag to v38.84.0 #1187
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: | |
push: | |
env: | |
LOG_LEVEL: debug | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
container: ghcr.io/visualon/renovate:38.84.0 | |
strategy: | |
matrix: | |
file: | |
- default | |
- automergePatch | |
- automergeDigest | |
- fixes | |
- meta | |
- shared | |
- groups | |
- replacements | |
- ng | |
- vo | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
show-progress: false | |
- name: testing ${{ matrix.file }} | |
run: renovate-config-validator ${{ matrix.file }}.json | |
test-success: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
timeout-minutes: 1 | |
if: always() | |
steps: | |
- name: Fail for failed or cancelled tests | |
if: | | |
needs.test.result == 'failure' || | |
needs.test.result == 'cancelled' | |
run: exit 1 |