Bump cc.jilt:jilt from 1.8.2 to 1.8.4 in /todo-api #68
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: Todo API CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - todo-api/src/** | |
| - todo-api/pom.xml | |
| - .github/workflows/* | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - todo-api/src/** | |
| - todo-api/pom.xml | |
| - .github/workflows/* | |
| jobs: | |
| unit-test: | |
| uses: categolj/workflows/.github/workflows/unit-test.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| build-oci-image-jvm-amd64: | |
| needs: unit-test | |
| uses: categolj/workflows/.github/workflows/build-oci-image-jvm.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| image_name: jvm_amd64 | |
| image_file: jvm_amd64.yaml | |
| runs_on: ubuntu-latest | |
| build-oci-image-jvm-aarch64: | |
| needs: unit-test | |
| uses: categolj/workflows/.github/workflows/build-oci-image-jvm.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| image_name: jvm_aarch64 | |
| image_file: jvm_aarch64.yaml | |
| runs_on: ubuntu-24.04-arm | |
| push-multi-arch-image-jvm: | |
| needs: | |
| - build-oci-image-jvm-amd64 | |
| - build-oci-image-jvm-aarch64 | |
| uses: categolj/workflows/.github/workflows/push-multi-arch-image.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| prefix: jvm | |
| save-image-jvm-amd64: | |
| needs: build-oci-image-jvm-amd64 | |
| uses: categolj/workflows/.github/workflows/save-images.yaml@main | |
| with: | |
| image_name: jvm_amd64 | |
| image_file: jvm_amd64.yaml | |
| save-image-jvm-aarch64: | |
| needs: build-oci-image-jvm-aarch64 | |
| uses: categolj/workflows/.github/workflows/save-images.yaml@main | |
| with: | |
| image_name: jvm_aarch64 | |
| image_file: jvm_aarch64.yaml | |
| build-oci-image-native-amd64: | |
| needs: unit-test | |
| uses: categolj/workflows/.github/workflows/build-oci-image-native.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| image_name: native_amd64 | |
| image_file: native_amd64.yaml | |
| runs_on: ubuntu-latest | |
| build-oci-image-native-aarch64: | |
| needs: unit-test | |
| uses: categolj/workflows/.github/workflows/build-oci-image-native.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| image_name: native_aarch64 | |
| image_file: native_aarch64.yaml | |
| runs_on: ubuntu-24.04-arm | |
| push-multi-arch-image-native: | |
| needs: | |
| - build-oci-image-native-amd64 | |
| - build-oci-image-native-aarch64 | |
| uses: categolj/workflows/.github/workflows/push-multi-arch-image.yaml@main | |
| with: | |
| pom_dir: todo-api | |
| prefix: native | |
| save-image-native-amd64: | |
| needs: build-oci-image-native-amd64 | |
| uses: categolj/workflows/.github/workflows/save-images.yaml@main | |
| with: | |
| image_name: native_amd64 | |
| image_file: native_amd64.yaml | |
| save-image-native-aarch64: | |
| needs: build-oci-image-native-aarch64 | |
| uses: categolj/workflows/.github/workflows/save-images.yaml@main | |
| with: | |
| image_name: native_aarch64 | |
| image_file: native_aarch64.yaml |