Skip to content

Commit

Permalink
Updated github action.
Browse files Browse the repository at this point in the history
  • Loading branch information
ylussaud committed Mar 15, 2024
1 parent 73a54f0 commit 5984230
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ jobs:
echo GITHUB_REF $GITHUB_REF
echo GITHUB_SHA $GITHUB_SHA
echo GITHUB_EVENT_NAME $GITHUB_EVENT_NAME
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: Set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.0
with:
distribution: 'adopt'
java-version: 17
- uses: actions/cache@v3
- uses: actions/cache@v4.0.1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Install metacity and xvfb
uses: awalsh128/cache-apt-pkgs-action@v1.3.0
uses: awalsh128/cache-apt-pkgs-action@v1.4.2
with:
packages: xvfb metacity
version: 1.0
version: cache-apt-pkgs-${{ matrix.profile }}

- name: Build with Maven
run: |
Expand Down

0 comments on commit 5984230

Please sign in to comment.