From 66454c1d0eb8fad08a8a95430dae0c3973842de3 Mon Sep 17 00:00:00 2001 From: kelvinqian00 Date: Thu, 29 Aug 2024 15:37:40 -0400 Subject: [PATCH 1/2] Update actions/setup-java to v4 --- .github/workflows/runtimer.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/runtimer.yml b/.github/workflows/runtimer.yml index 5f69767..7de90be 100644 --- a/.github/workflows/runtimer.yml +++ b/.github/workflows/runtimer.yml @@ -28,11 +28,9 @@ jobs: runs-on: ${{ matrix.os }} - # Steps represent a sequence of tasks that will be executed as part of the job steps: - - name: Prepare java - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: ${{ inputs.java-distribution }} java-version: ${{ inputs.java-version }} From 9d5bb282e16c0a059720e2a7c5a854f82b8219b8 Mon Sep 17 00:00:00 2001 From: kelvinqian00 Date: Thu, 29 Aug 2024 15:39:05 -0400 Subject: [PATCH 2/2] Update upload-artifact to v4 --- .github/workflows/runtimer.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/runtimer.yml b/.github/workflows/runtimer.yml index 7de90be..e53da01 100644 --- a/.github/workflows/runtimer.yml +++ b/.github/workflows/runtimer.yml @@ -47,7 +47,7 @@ jobs: run: 7z a -tzip ${{ matrix.os }}-jre.zip ${{ matrix.os }}\ - name: Archive for transfer to draft_release job - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}-jre path: ${{ matrix.os }}-jre.zip