chore(deps): update ghcr.io/renovatebot/renovate docker tag to v42.26.11 #3666
Workflow file for this run
This file contains hidden or 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: | |
| 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: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| show-progress: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 | |
| with: | |
| standalone: true | |
| - name: Setup Node | |
| uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0 | |
| with: | |
| node-version-file: .node-version | |
| cache: pnpm | |
| - run: pnpm install | |
| - run: pnpm prettier | |
| preset: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| container: | |
| image: ghcr.io/renovatebot/renovate:42.26.11@sha256:62c4018e208a82a490ec585126ea785b6ebe8c7e304055dee6ca60678aee2d01 | |
| # 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@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| with: | |
| show-progress: false | |
| - name: testing ${{ matrix.file }} | |
| run: renovate-config-validator ${{ matrix.file }}.json | |
| preset-success: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - preset | |
| - lint | |
| 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 |