Skip to content

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.25 to 2.2.0 #79

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.25 to 2.2.0

chore(deps): bump org.jetbrains.kotlin:kotlin-maven-allopen from 1.9.25 to 2.2.0 #79

Workflow file for this run

name: CI
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-24.04-arm
permissions:
packages: write
strategy:
max-parallel: 4
matrix:
java-version: [ 21 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
cache: 'maven'
- name: Docker image generation
run: ./mvnw clean -Pnative spring-boot:build-image
- name: Login to GitHub Container Registry
if: github.ref == 'refs/heads/main'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push image GitHub Container Registry
if: github.ref == 'refs/heads/main'
run: |
docker push ghcr.io/${{ github.repository }}:latest