fix(deps): update fabric8-kubernetes-client monorepo to v7 #281
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
paths-ignore: | |
- "**.md" | |
- "renovate.json" | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "renovate.json" | |
jobs: | |
build: | |
if: ${{ github.event_name != 'pull_request' || github.repository != github.event.pull_request.head.repo.full_name }} | |
name: Build with Java 17 | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: "17" | |
distribution: "adopt" | |
cache: "maven" | |
- run: java -version | |
- run: mvn --version | |
- run: mvn -B package |