Bump no.idporten.validators:idporten-validators from 1.4.1 to 1.4.2 (… #158
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
# This workflow will build a Spring Boot/Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Build/publish Docker image | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "src/test/**" | |
- "docker/**" | |
- "docker-compose.yaml" | |
- "*.md" | |
- "LICENSE" | |
- "catalog-info.yaml" | |
jobs: | |
build-publish-image: | |
uses: felleslosninger/github-workflows/.github/workflows/ci-spring-boot-build-publish-image.yml@main | |
with: | |
image-name: idporten-user-service | |
java-version: 21 | |
secrets: inherit | |
call-update-image: | |
uses: felleslosninger/github-workflows/.github/workflows/ci-call-update-image.yml@main | |
needs: build-publish-image | |
with: | |
application-name: idporten-user-service | |
deployment-environment: systest | |
image-digest: ${{ needs.build-publish-image.outputs.image-digest }} | |
image-name: idporten-user-service | |
image-version: ${{ needs.build-publish-image.outputs.image-version }} | |
kubernetes-repo: idporten-cd | |
product-name: idporten | |
secrets: inherit |