From c4b657e9ad73b10aa879ef9eda35cb400ebb7b01 Mon Sep 17 00:00:00 2001 From: dev31520 <83210547+dev31520@users.noreply.github.com> Date: Sat, 10 Feb 2024 22:46:17 +0100 Subject: [PATCH 1/4] FMA - Draft release upgrade to java 17 --- .github/workflows/draft-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 5c1acaeb..416c23d4 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-java@v2 with: distribution: 'adopt' - java-version: '11' + java-version: '17' - name: Cache Maven packages uses: actions/cache@v2 with: @@ -54,4 +54,4 @@ jobs: name: ${{ env.project }} ${{ env.tag }} bodyFile: "temp_release_notes/release_file.md" draft: true - token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + token: ${{ secrets.GITHUB_TOKEN }} From b376d962050a7cee08d93095e4a80d8017a54089 Mon Sep 17 00:00:00 2001 From: dev31520 <83210547+dev31520@users.noreply.github.com> Date: Sun, 11 Feb 2024 17:30:07 +0100 Subject: [PATCH 2/4] FMA - downgrade to java 11 --- .github/workflows/draft-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 416c23d4..4cfe39e9 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -20,7 +20,7 @@ jobs: uses: actions/setup-java@v2 with: distribution: 'adopt' - java-version: '17' + java-version: '11' - name: Cache Maven packages uses: actions/cache@v2 with: From eb9d8db9dfa4e3e2558818884ce8b48ef81ecc7f Mon Sep 17 00:00:00 2001 From: dev31520 <83210547+dev31520@users.noreply.github.com> Date: Mon, 12 Feb 2024 10:24:08 +0100 Subject: [PATCH 3/4] FMA - Update jvm actions to v3 --- .github/workflows/draft-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 4cfe39e9..705cd60b 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup java - uses: actions/setup-java@v2 + uses: actions/setup-java@v3 with: distribution: 'adopt' - java-version: '11' + java-version: '17' - name: Cache Maven packages - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} From 6f947a1134ce999d7f663c36f2e05c4b6397a65d Mon Sep 17 00:00:00 2001 From: dev31520 <83210547+dev31520@users.noreply.github.com> Date: Mon, 12 Feb 2024 10:40:10 +0100 Subject: [PATCH 4/4] FMA - image actions 'adopts' v2 --- .github/workflows/draft-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 705cd60b..416c23d4 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -15,14 +15,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out repository code - uses: actions/checkout@v3 + uses: actions/checkout@v2 - name: Setup java - uses: actions/setup-java@v3 + uses: actions/setup-java@v2 with: distribution: 'adopt' java-version: '17' - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v2 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}