fix(deps): update dependency org.springframework.modulith:spring-modulith-bom to v1.3.1 #261
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: kafka-spring-modulith-outbox-pattern-sample | |
on: | |
push: | |
paths: | |
- "spring-modulith-outbox-pattern/**" | |
branches: [ main ] | |
pull_request: | |
paths: | |
- "spring-modulith-outbox-pattern/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: "spring-modulith-outbox-pattern" | |
strategy: | |
matrix: | |
java: ["21"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: graalvm/setup-graalvm@v1 | |
with: | |
distribution: 'graalvm' | |
java-version: ${{ matrix.java }} | |
cache: "maven" | |
- name: Printing versions | |
run: | | |
echo "GRAALVM_HOME: $GRAALVM_HOME" | |
echo "JAVA_HOME: $JAVA_HOME" | |
java --version | |
native-image --version | |
- name: Build with Maven | |
run: ./mvnw -B verify --file pom.xml | |
- if: ${{ github.ref == 'refs/heads/main' }} | |
name: Build and Publish Docker Image | |
run: | | |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | |
./mvnw -Pnative spring-boot:build-image -Dspring-boot.build-image.imageName=${{ secrets.DOCKER_USERNAME }}/spring-modulith-outbox-pattern | |
docker push ${{ secrets.DOCKER_USERNAME }}/spring-modulith-outbox-pattern |