Skip to content

Commit

Permalink
Updated actions (#75)
Browse files Browse the repository at this point in the history
richard-axual authored Apr 19, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 7d63c08 commit 046621e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -12,15 +12,15 @@ jobs:
name: Build and test on GraalVM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: download GraalVM
run: |
download_url="https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.3.0/graalvm-ce-java17-linux-amd64-22.3.0.tar.gz"
wget -O $RUNNER_TEMP/graal_package.tar.gz $download_url
- name: Set up GraalVM
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: 'jdkfile'
jdkFile: ${{ runner.temp }}/graal_package.tar.gz
@@ -30,13 +30,13 @@ jobs:
run: |
gu install python
- name: Cache SonarCloud packages
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 comments on commit 046621e

Please sign in to comment.