Bump org.instancio:instancio-junit from 5.0.0 to 5.0.1 #31
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: 'Deploy' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: 'Deploy to Github Container Registry' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout project' | |
uses: actions/checkout@v4 | |
- name: 'Set up Java 21' | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 21 | |
cache: maven | |
- name: 'Login to Github Container Registry' | |
uses: redhat-actions/podman-login@v1 | |
with: | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
registry: 'ghcr.io' | |
- name: 'Deploy' | |
run: ./mvnw -B compile jib:build |