Bump the maven-deps group across 1 directory with 10 updates #89
Workflow file for this run
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: PR Build | |
# PR build | |
on: | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
# just runs Maven and Docker build | |
jobs: | |
build: | |
name: "Install software" | |
runs-on: [self-hosted, linux, X64] | |
steps: | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.2 | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: '0' | |
- run: mvn --version | |
- name: Build with Maven | |
run: mvn clean -B package --settings .github/workflows/settings.xml --file pom.xml | |
env: | |
CI: false | |
PRIVATE_REPO_USERNAME: ${{ vars.PRIVATE_REPO_USERNAME }} | |
MAVEN_REPO_READ: ${{ secrets.MAVEN_REPO_READ }} | |
checks: | |
name: "Checks" | |
needs: build | |
runs-on: [self-hosted, linux, X64] | |
steps: | |
- name: get helm | |
uses: azure/setup-helm@v4 | |
- name: run helm dependency update | |
working-directory: application/target/helm/observatory | |
run: helm dep update | |
- name: run helm template | |
working-directory: application/target/helm | |
run: helm template observatory |