diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index b9726e45..d937372c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -8,13 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Set up JDK 1.8 - uses: actions/setup-java@v1 + - name: Set up JDK 11 + uses: actions/setup-java@v4 with: - java-version: 1.8 - - name: Setup node12 - uses: actions/setup-node@v2 + distribution: 'corretto' + java-version: '11' + - name: Setup node18 + uses: actions/setup-node@v4 with: - node-version: '12' + node-version: 18 - name: Build with Maven run: mvn -B package --file pom.xml diff --git a/orion-server/scripts/build_ui.sh b/orion-server/scripts/build_ui.sh index 0b15757a..588dad60 100755 --- a/orion-server/scripts/build_ui.sh +++ b/orion-server/scripts/build_ui.sh @@ -25,4 +25,4 @@ export CI='' npm cache clean --force npm prune npm install -npm run build \ No newline at end of file +NODE_OPTIONS=--openssl-legacy-provider npm run build \ No newline at end of file