Bump eclipse-temurin from 21.0.6_7-jre-jammy@sha256:02fc89fa8766a9ba221e69225f8d1c10bb91885ddbd3c112448e23488ba40ab6 to sha256:22d40ca9ace636f5e3dfe2d597bbb26292e7a301e239ca2556bc24b5d3d8a128 in /src/main/docker #4196
Workflow file for this run
This file contains hidden or 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 CI | |
| on: | |
| push: | |
| branches: | |
| - 'master' # Default branch | |
| - 'feature-**' # Feature branches | |
| - '[0-9]+.[0-9]+.x' # Release branches | |
| paths-ignore: | |
| - '**/*.md' | |
| - 'docs/**' | |
| pull_request: | |
| branches: | |
| - 'master' # Default branch | |
| - 'feature-**' # Feature branches | |
| paths-ignore: | |
| - '**/*.md' | |
| - 'docs/**' | |
| workflow_dispatch: | |
| permissions: { } | |
| jobs: | |
| call-build: | |
| uses: ./.github/workflows/_meta-build.yaml | |
| with: | |
| app-version: "snapshot" | |
| publish-container: ${{ github.ref_name == 'master' || startsWith(github.ref_name, 'feature-') }} | |
| ref-name: ${{ github.ref_name }} | |
| permissions: | |
| security-events: write # Required to upload trivy's SARIF output | |
| secrets: | |
| registry-0-usr: ${{ secrets.HUB_USERNAME }} | |
| registry-0-psw: ${{ secrets.HUB_ACCESSS_TOKEN }} |