Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion workflow-templates/dev-docker-build-multiple-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
echo "**Tags:** ${{ steps.prepare_tags.outputs.tags }}" >> $GITHUB_STEP_SUMMARY

- name: "Build and Publish Docker Image"
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c #v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 #v2.5.0
with:
component: ${{ toJson(matrix.component) }}
platforms: ${{ matrix.component.platforms }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/dev-docker-build-selective.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
component: ${{ fromJson(needs.prepare.outputs.packages) }}
steps:
- name: Docker
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c #v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 #v2.5.0
with:
ref: ${{ github.ref }}
dry-run: ${{ github.event.inputs.dry-run || github.event_name == 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/dev-docker-build-single-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
echo "**Tags:** ${{ steps.prepare_tags.outputs.tags }}" >> $GITHUB_STEP_SUMMARY

- name: "Build and Publish Docker Image"
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c #v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 #v2.5.0
with:
custom-image-name: ${{ github.event.inputs.custom-image-name || '' }}
platforms: ${{ env.PLATFORMS }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/dev-mvn-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
echo "**Tags:** ${{ steps.prepare_tags.outputs.tags }}" >> $GITHUB_STEP_SUMMARY

- name: "Build and Publish Docker Image"
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c #v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 #v2.5.0
with:
custom-image-name: ${{ github.event.inputs.custom-image-name || '' }}
platforms: ${{ env.PLATFORMS }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
component: ${{ fromJson(needs.resolve-config.outputs.config) }}
steps:
- name: "Docker build and publish"
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c # v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 # v2.5.0
with:
ref: 'v${{ inputs.release }}'
download-artifact: false
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/maven-release-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ jobs:

- name: "Docker Build"
id: docker_build
uses: netcracker/qubership-workflow-hub/actions/docker-action@cabbb90e9471163cfac84bd50ff0296b2803b44c # v2.3.0
uses: netcracker/qubership-workflow-hub/actions/docker-action@b6bee6f61fdc8b367777c1173fc852a58878a6a7 # v2.5.0
with:
ref: v${{ needs.deploy.outputs.release-version }}
download-artifact: true
Expand Down
Loading