From b834c10efd7ce8fe596100617ee3d9420805b48d Mon Sep 17 00:00:00 2001 From: George Adams Date: Fri, 23 Dec 2022 12:46:15 +0000 Subject: [PATCH] migrate from openjdk base image to eclipse-temurin (#3449) * migrate from openjdk base image to eclipse-temurin https://hub.docker.com/_/openjdk has been deprecated for some time and will no longer get security updates * Update publish.yml * Update release-filament.yml --- .github/workflows/build.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/release-filament.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ee855e612..530c3f38fc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ jobs: java: [17-jdk, 18-jdk] runs-on: ubuntu-22.04 container: - image: openjdk:${{ matrix.java }} + image: eclipse-temurin:${{ matrix.java }} options: --user root steps: - uses: actions/checkout@v3 @@ -23,7 +23,7 @@ jobs: test-build-logic: runs-on: ubuntu-22.04 container: - image: openjdk:18-jdk + image: eclipse-temurin:18-jdk options: --user root steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c38c24f99c..ab8d16f6d6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,7 +6,7 @@ jobs: if: ${{ github.repository_owner == 'FabricMC' }} runs-on: ubuntu-22.04 container: - image: openjdk:18-jdk + image: eclipse-temurin:18-jdk options: --user root steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/release-filament.yml b/.github/workflows/release-filament.yml index 62547968c9..05e6e1780f 100644 --- a/.github/workflows/release-filament.yml +++ b/.github/workflows/release-filament.yml @@ -4,7 +4,7 @@ jobs: build: runs-on: ubuntu-22.04 container: - image: openjdk:18-jdk + image: eclipse-temurin:18-jdk options: --user root steps: - uses: actions/checkout@v3 @@ -12,4 +12,4 @@ jobs: env: MAVEN_URL: ${{ secrets.MAVEN_URL }} MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} \ No newline at end of file + MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}