Skip to content

ci(deps): update ghcr.io/renovatebot/renovate docker tag to v44.35.5 … #2790

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

ci(deps): update ghcr.io/renovatebot/renovate docker tag to v44.35.5 … #2790

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@e540d5d9aa823f009633b93823f0d69caa13ac34 # v5.0.11
with:
save-cache: true
- run: pnpm prettier
preset:
runs-on: ubuntu-latest
timeout-minutes: 10
container:
image: ghcr.io/renovatebot/renovate:44.35.5@sha256:30a3ff4ab29b42bf67cbea47f6ba462e8a2f455065c2d5e9815cd724dc2175ef
# 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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
show-progress: false
- name: testing ${{ matrix.file }}
run: renovate-config-validator --no-global --strict ${{ 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