From 6d28fe104b96ae817bbfb16e2ac915718c115a00 Mon Sep 17 00:00:00 2001 From: Michael Dombrowski Date: Thu, 4 Apr 2024 12:49:54 -0400 Subject: [PATCH] ci: upgrade github actions --- .github/workflows/maven.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5830697..f0dd572 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,7 +8,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: wagoid/commitlint-github-action@v4 @@ -17,15 +17,17 @@ jobs: with: node-version: '18' - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + uses: actions/setup-java@v4 with: - java-version: 1.8 + distribution: corretto + java-version: 8 + cache: maven - name: Build with Maven run: mvn -ntp -U clean verify env: AWS_REGION: us-west-2 - name: Upload Failed Test Report - uses: actions/upload-artifact@v1.0.0 + uses: actions/upload-artifact@v3 if: failure() with: name: Failed Test Report