Skip to content

Bump follow-redirects from 1.15.2 to 1.15.6 in /bigtop-manager-ui #8

Bump follow-redirects from 1.15.2 to 1.15.6 in /bigtop-manager-ui

Bump follow-redirects from 1.15.2 to 1.15.6 in /bigtop-manager-ui #8

Workflow file for this run

on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: ['17', '21']
services:
db:
image: mysql:8.0
ports:
- 3306:3306
env:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: bigtop_manager
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'maven'
- run: ./mvnw clean install -B -Djava.version=${{ matrix.java }}