Skip to content

Commit

Permalink
Update action to use fresh version of gradle and scan
Browse files Browse the repository at this point in the history
  • Loading branch information
ov7a committed May 24, 2024
1 parent 22f0681 commit 2dfb674
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/run-reproducer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,19 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 11
- uses: gradle/gradle-build-action@v2
distribution: 'temurin'
java-version: 17

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
arguments: help --info
gradle-version: release-candidate
build-scan-publish: true
build-scan-terms-of-use-url: "https://gradle.com/terms-of-service"
build-scan-terms-of-use-agree: "yes"

- name: Run build # change the command below to whatever you need to reproduce the issue
run: gradle build

0 comments on commit 2dfb674

Please sign in to comment.