Update ghcr.io/renovatebot/renovate Docker tag to v39.28.0 #1603
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] | |
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 |