Skip to content

Commit

Permalink
Update various GH actions to fix CI warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
pimterry committed Dec 20, 2023
1 parent 1956b48 commit 1dfaa1c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,27 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JRE 8 as libs for R8
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 8
distribution: adopt-hotspot

- name: Set up JDK 14 for build
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 14
distribution: adopt-hotspot

- name: Build & test the agent standalone
run: ./gradlew quickTest

- name: Build & test the full distributable
run: ./gradlew distTest

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: distributables
path: build/libs/*-dist.jar
Expand Down

0 comments on commit 1dfaa1c

Please sign in to comment.