Skip to content

ci(deps): update ghcr.io/renovatebot/renovate docker tag to v43.112.0… #6674

ci(deps): update ghcr.io/renovatebot/renovate docker tag to v43.112.0…

ci(deps): update ghcr.io/renovatebot/renovate docker tag to v43.112.0… #6674

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
LOG_LEVEL: debug
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: ⚙️ Setup
uses: containerbase/internal-tools/setup@c5b576e3871ea09b535647f7826a5869e98e560d # v4.5.19
with:
save-cache: true
- run: pnpm prettier
preset:
runs-on: ubuntu-latest
timeout-minutes: 10
container:
image: ghcr.io/renovatebot/renovate:43.112.0@sha256:d077095a4161d9c2c7c1a950d3f824f9e6b8db37a93a249213ea965c0f4b7af7
# github hosted runners are running as `1001:127` (ubuntu:docker)
options: -u 1001:0 --group-add 1000 --group-add 12021 --group-add 127
strategy:
matrix:
file:
- default
- renovate-config
- merge-queue
- .github/renovate
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
show-progress: false
- name: testing ${{ matrix.file }}
run: renovate-config-validator --no-global ${{ matrix.file }}.json
preset-success:
runs-on: ubuntu-latest
needs:
- lint
- preset
timeout-minutes: 1
if: always()
steps:
- name: Fail for failed or cancelled presets
if: |
needs.test.result == 'failure' ||
needs.test.result == 'cancelled'
run: exit 1
- name: Fail for failed or cancelled lint
if: |
needs.lint.result == 'failure' ||
needs.lint.result == 'cancelled'
run: exit 1