Skip to content

deps: bump the dev-ci-tools group across 1 directory with 2 updates #1486

deps: bump the dev-ci-tools group across 1 directory with 2 updates

deps: bump the dev-ci-tools group across 1 directory with 2 updates #1486

Workflow file for this run

---
name: Renovate
on: # yamllint disable-line rule:truthy
push:
paths:
- ".github/workflows/renovate.yaml"
- ".github/renovate-global-config.js"
- ".github/renovate.json"
pull_request:
paths:
- ".github/workflows/renovate.yaml"
- ".github/renovate-global-config.js"
- ".github/renovate.json"
schedule:
- cron: "0 2 * * *"
workflow_dispatch: null
permissions:
contents: read
jobs:
renovate:
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
security-events: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable dry run if required
if: ${{ github.ref_name != github.event.repository.default_branch }}
run: |
set -o errexit
set -o nounset
echo "Enable Renovate dry run"
echo "RENOVATE_DRY_RUN=full" >>"${GITHUB_ENV}"
- name: Self-hosted Renovate
uses: renovatebot/github-action@v41.0.3
env:
LOG_LEVEL: "debug"
with:
configurationFile: .github/renovate-global-config.js
token: ${{ secrets.GITHUB_TOKEN }}