chore(deps): update dependency renovate to v39.113.0 #10418
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: Build | |
on: | |
push: | |
branches-ignore: | |
- hotfix/* | |
- release/* | |
pull_request: | |
schedule: | |
- cron: 0 0 * * * | |
workflow_dispatch: # allow Action to be run manually | |
jobs: | |
validate-renovate-config: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout with GIT | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: npm | |
- name: Update NPM | |
run: npm install --global npm@latest | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: json5-lint | |
run: npm run json5-lint | |
- name: renovate-config-validator | |
run: npm run renovate-config-validator | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout with GIT | |
uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
- name: Set up Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
add-job-summary-as-pr-comment: on-failure | |
build-scan-publish: true | |
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service" | |
build-scan-terms-of-use-agree: "yes" | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload test results | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: test-results | |
path: "**/build/test-results/test/TEST-*.xml" | |
- name: Upload build reports | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: build-reports | |
path: "**/build/reports/" |