From cd6f414439041f0558ba489ddb869f8f0ee545cb Mon Sep 17 00:00:00 2001 From: Daniel Widdis Date: Tue, 9 Dec 2025 11:16:40 -0800 Subject: [PATCH] Update artifact naming to include Java version Signed-off-by: Daniel Widdis --- .github/workflows/test-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-workflow.yml b/.github/workflows/test-workflow.yml index 7c8fbaff9..58fff0826 100644 --- a/.github/workflows/test-workflow.yml +++ b/.github/workflows/test-workflow.yml @@ -71,7 +71,7 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: alerting-plugin-${{ matrix.os }} + name: alerting-plugin-${{ matrix.os }}-${{ matrix.java }} path: alerting-artifacts overwrite: true @@ -82,7 +82,7 @@ jobs: WORKING_DIR: ${{ matrix.working_directory }}. strategy: matrix: - java: [21, 24] + java: [21, 25] os: [ windows-latest, macos-latest ] include: - os: windows-latest @@ -120,6 +120,6 @@ jobs: - name: Upload Artifacts uses: actions/upload-artifact@v4 with: - name: alerting-plugin-${{ matrix.os }} + name: alerting-plugin-${{ matrix.os }}-${{ matrix.java }} path: alerting-artifacts overwrite: true