From 58f1423a6e4e799360c2b8a2089a595df54a299f Mon Sep 17 00:00:00 2001 From: Tad Hunt Date: Sat, 21 Oct 2023 17:27:53 -0600 Subject: [PATCH] Upgrade versions in GitHub Actions Fixes a bunch of deprecation warnings. --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 395d3fe..1a48079 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,16 +10,16 @@ jobs: steps: - name: 'Checkout source code' - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: 'Set up JDK' - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: java-version: '11' distribution: 'adopt' - name: 'Cache dependencies' - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} @@ -29,7 +29,7 @@ jobs: run: mvn -B package --file pom.xml - name: 'Upload artifact' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: MobArena.jar path: target/MobArena.jar