Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build_images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
password: ${{ secrets.HARBOR_TOKEN }}
- name: Build & push to staging
if: ${{ github.ref != 'refs/heads/master' }}
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand All @@ -100,7 +100,7 @@ jobs:
- '${{ matrix.image }}/version.txt'
- name: Build & push to prod
if: ${{ github.ref == 'refs/heads/master' }}
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
push: true
context: "{{defaultContext}}:${{ matrix.image }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cloud_chatops.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:

- name: Build and push to staging project
# https://github.com/docker/build-push-action/releases
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- 'cloud-chatops/version.txt'

- name: Build and push on version change
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
if: steps.release_updated.outputs.version == 'true'
with:
cache-from: type=gha
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cloud_monitoring.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Build and push to staging project
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
password: ${{ secrets.HARBOR_TOKEN }}

- name: Build and push on version change
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
if: steps.release_updated.outputs.version == 'true'
with:
cache-from: type=gha
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rabbit_consumer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Build and push to staging project
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- 'openstack-rabbit-consumer/version.txt'

- name: Build and push on version change
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
if: steps.release_updated.outputs.version == 'true'
with:
cache-from: type=gha
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rabbit_consumer_chart_schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: echo "version=$(cat openstack-rabbit-consumer/version.txt)" >> $GITHUB_OUTPUT

- name: Build and push on version change
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
if: steps.release_updated.outputs.version == 'true'
with:
cache-from: type=gha
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/username_service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd

- name: Run tests in container
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
no-cache: true
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Build and push to staging project
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
with:
cache-from: type=gha
cache-to: type=gha,mode=max
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- 'stfc-username-service/version.txt'

- name: Build and push on version change
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f
if: steps.release_updated.outputs.version == 'true'
with:
cache-from: type=gha
Expand Down
Loading