From 19d1118ff7acf4c8459e2597df5a34f65f261cc0 Mon Sep 17 00:00:00 2001 From: Ian Roberts Date: Wed, 6 Nov 2024 13:28:43 +0000 Subject: [PATCH 1/2] Upgrade actions/upload-artifact to v4, as v3 is deprecated and will stop working soon. --- .github/workflows/pull-request.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 79ba663..0c26925 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -81,7 +81,7 @@ jobs: - name: Upload Test Results if: success() || failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Test Results path: | @@ -103,7 +103,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Event File path: ${{ github.event_path }} From a9e246fcc8181647f526508ac09d145d91646070 Mon Sep 17 00:00:00 2001 From: Ian Roberts Date: Wed, 6 Nov 2024 13:29:01 +0000 Subject: [PATCH 2/2] Upgrade other actions that have newer releases. --- .github/workflows/ci.yaml | 4 ++-- .github/workflows/pull-request.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5aa3e35..1163c63 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: "1" @@ -36,7 +36,7 @@ jobs: fi - name: Set up JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '8' distribution: 'zulu' diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 0c26925..9659810 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout PR - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Update submodules if necessary run: | @@ -22,7 +22,7 @@ jobs: fi - name: Set up JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: '8' distribution: 'zulu'