fix(deps): update dependency com.squareup.okhttp3:okhttp-jvm to v5.3.2 #1794
Workflow file for this run
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: Build the Integration artifacts and images | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-maven: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| ARTIFACT_NAME: ${{ steps.maven-build-step.outputs.artifact-name }} | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: Maven build | |
| uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@e012d3bda6f9d5511415e2d885f32826049284a4 # v1.0.23 | |
| id: maven-build-step | |
| with: | |
| app-path: refarch-integrations | |
| build-images: | |
| if: github.ref_name == 'main' | |
| needs: build-maven | |
| runs-on: ubuntu-latest | |
| permissions: | |
| packages: write | |
| strategy: | |
| matrix: | |
| include: | |
| - name: s3-integration-rest-service | |
| path: ./refarch-integrations/refarch-s3-integration/refarch-s3-integration-rest/refarch-s3-integration-rest-service | |
| steps: | |
| - name: Build and push image | |
| uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@e012d3bda6f9d5511415e2d885f32826049284a4 # v1.0.23 | |
| with: | |
| registry-username: ${{ github.actor }} | |
| registry-password: ${{ secrets.GITHUB_TOKEN }} | |
| path: ${{ matrix.path }} | |
| artifact-name: ${{ needs.build-maven.outputs.ARTIFACT_NAME }} | |
| image-name: ${{ matrix.name }} | |
| image-tags: | | |
| type=raw,value=dev |