Skip to content

Update ghcr.io/renovatebot/renovate Docker tag to v39.28.0 #1603

Update ghcr.io/renovatebot/renovate Docker tag to v39.28.0

Update ghcr.io/renovatebot/renovate Docker tag to v39.28.0 #1603

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu]
java:
- 8 # TestedInstrumentationsSmokeTest only runs with this version, so update this test when 8 gets removed from the test matrix
- 11
- 17
- 21
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
cache: "gradle"
- name: Setup Gradle and run build
uses: gradle/actions/setup-gradle@v4
- name: Build
run: ./gradlew build
env:
CHECK_GENERATED_FILES: true
SMOKE_TEST_JAVA_VERSION: ${{ matrix.java }} # the smoke tests will pick this up