Skip to content

Commit b73604e

Browse files
authored
ci: bump stackabletech/actions to 0.6.0 to remove the bake buildx --cache option from image builds (#963)
* monitor free memory during the Great British Bake Off ![Richmond](https://static.wikia.nocookie.net/theitcrowd/images/a/a1/Richmond1%29.jpg/revision/latest?cb=20100424103252) * drop bake cache option * ci: bump stackabletech/actions to 0.6.0 to remove the bake buildx --cache option from image builds
1 parent 4841427 commit b73604e

26 files changed

+173
-173
lines changed

.github/workflows/build_airflow.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
persist-credentials: false
3434
- id: shard
35-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
35+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3636
with:
3737
product-name: ${{ env.PRODUCT_NAME }}
3838
outputs:
@@ -58,19 +58,19 @@ jobs:
5858
persist-credentials: false
5959

6060
- name: Free Disk Space
61-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
61+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6262

6363
- name: Build Product Image
6464
id: build
65-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
65+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6666
with:
6767
product-name: ${{ env.PRODUCT_NAME }}
6868
product-version: ${{ matrix.versions }}
6969
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
7070
sdp-version: ${{ env.SDP_VERSION }}
7171

7272
- name: Publish Container Image on docker.stackable.tech
73-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
73+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7474
with:
7575
image-registry-uri: docker.stackable.tech
7676
image-registry-username: github
@@ -80,7 +80,7 @@ jobs:
8080
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
8181

8282
- name: Publish Container Image on oci.stackable.tech
83-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
83+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8484
with:
8585
image-registry-uri: oci.stackable.tech
8686
image-registry-username: robot$sdp+github-action-build
@@ -106,7 +106,7 @@ jobs:
106106
persist-credentials: false
107107

108108
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
109-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
109+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
110110
with:
111111
image-registry-uri: docker.stackable.tech
112112
image-registry-username: github
@@ -115,7 +115,7 @@ jobs:
115115
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
116116

117117
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
118-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
118+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
119119
with:
120120
image-registry-uri: oci.stackable.tech
121121
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_druid.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
persist-credentials: false
3636
- id: shard
37-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
37+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3838
with:
3939
product-name: ${{ env.PRODUCT_NAME }}
4040
outputs:
@@ -60,19 +60,19 @@ jobs:
6060
persist-credentials: false
6161

6262
- name: Free Disk Space
63-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
63+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6464

6565
- name: Build Product Image
6666
id: build
67-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
67+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6868
with:
6969
product-name: ${{ env.PRODUCT_NAME }}
7070
product-version: ${{ matrix.versions }}
7171
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
7272
sdp-version: ${{ env.SDP_VERSION }}
7373

7474
- name: Publish Container Image on docker.stackable.tech
75-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
75+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7676
with:
7777
image-registry-uri: docker.stackable.tech
7878
image-registry-username: github
@@ -82,7 +82,7 @@ jobs:
8282
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
8383

8484
- name: Publish Container Image on oci.stackable.tech
85-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
85+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8686
with:
8787
image-registry-uri: oci.stackable.tech
8888
image-registry-username: robot$sdp+github-action-build
@@ -108,7 +108,7 @@ jobs:
108108
persist-credentials: false
109109

110110
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
111-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
111+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
112112
with:
113113
image-registry-uri: docker.stackable.tech
114114
image-registry-username: github
@@ -117,7 +117,7 @@ jobs:
117117
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
118118

119119
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
120-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
120+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
121121
with:
122122
image-registry-uri: oci.stackable.tech
123123
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hadoop.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
persist-credentials: false
3636
- id: shard
37-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
37+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3838
with:
3939
product-name: ${{ env.PRODUCT_NAME }}
4040
outputs:
@@ -60,19 +60,19 @@ jobs:
6060
persist-credentials: false
6161

6262
- name: Free Disk Space
63-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
63+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6464

6565
- name: Build Product Image
6666
id: build
67-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
67+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6868
with:
6969
product-name: ${{ env.PRODUCT_NAME }}
7070
product-version: ${{ matrix.versions }}
7171
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
7272
sdp-version: ${{ env.SDP_VERSION }}
7373

7474
- name: Publish Container Image on docker.stackable.tech
75-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
75+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7676
with:
7777
image-registry-uri: docker.stackable.tech
7878
image-registry-username: github
@@ -82,7 +82,7 @@ jobs:
8282
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
8383

8484
- name: Publish Container Image on oci.stackable.tech
85-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
85+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8686
with:
8787
image-registry-uri: oci.stackable.tech
8888
image-registry-username: robot$sdp+github-action-build
@@ -108,7 +108,7 @@ jobs:
108108
persist-credentials: false
109109

110110
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
111-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
111+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
112112
with:
113113
image-registry-uri: docker.stackable.tech
114114
image-registry-username: github
@@ -117,7 +117,7 @@ jobs:
117117
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
118118

119119
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
120-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
120+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
121121
with:
122122
image-registry-uri: oci.stackable.tech
123123
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hbase.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
persist-credentials: false
3737
- id: shard
38-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
38+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3939
with:
4040
product-name: ${{ env.PRODUCT_NAME }}
4141
outputs:
@@ -61,19 +61,19 @@ jobs:
6161
persist-credentials: false
6262

6363
- name: Free Disk Space
64-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
64+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6565

6666
- name: Build Product Image
6767
id: build
68-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
68+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6969
with:
7070
product-name: ${{ env.PRODUCT_NAME }}
7171
product-version: ${{ matrix.versions }}
7272
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
7373
sdp-version: ${{ env.SDP_VERSION }}
7474

7575
- name: Publish Container Image on docker.stackable.tech
76-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
76+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7777
with:
7878
image-registry-uri: docker.stackable.tech
7979
image-registry-username: github
@@ -83,7 +83,7 @@ jobs:
8383
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
8484

8585
- name: Publish Container Image on oci.stackable.tech
86-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
86+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8787
with:
8888
image-registry-uri: oci.stackable.tech
8989
image-registry-username: robot$sdp+github-action-build
@@ -109,7 +109,7 @@ jobs:
109109
persist-credentials: false
110110

111111
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
112-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
112+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
113113
with:
114114
image-registry-uri: docker.stackable.tech
115115
image-registry-username: github
@@ -118,7 +118,7 @@ jobs:
118118
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
119119

120120
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
121-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
121+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
122122
with:
123123
image-registry-uri: oci.stackable.tech
124124
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hello-world.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
with:
3131
persist-credentials: false
3232
- id: shard
33-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
33+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3434
with:
3535
product-name: ${{ env.PRODUCT_NAME }}
3636
outputs:
@@ -56,19 +56,19 @@ jobs:
5656
persist-credentials: false
5757

5858
- name: Free Disk Space
59-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
59+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6060

6161
- name: Build Product Image
6262
id: build
63-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
63+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6464
with:
6565
product-name: ${{ env.PRODUCT_NAME }}
6666
product-version: ${{ matrix.versions }}
6767
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
6868
sdp-version: ${{ env.SDP_VERSION }}
6969

7070
- name: Publish Container Image on docker.stackable.tech
71-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
71+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7272
with:
7373
image-registry-uri: docker.stackable.tech
7474
image-registry-username: github
@@ -78,7 +78,7 @@ jobs:
7878
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
7979

8080
- name: Publish Container Image on oci.stackable.tech
81-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
81+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8282
with:
8383
image-registry-uri: oci.stackable.tech
8484
image-registry-username: robot$sdp+github-action-build
@@ -104,7 +104,7 @@ jobs:
104104
persist-credentials: false
105105

106106
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
107-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
107+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
108108
with:
109109
image-registry-uri: docker.stackable.tech
110110
image-registry-username: github
@@ -113,7 +113,7 @@ jobs:
113113
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
114114

115115
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
116-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
116+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
117117
with:
118118
image-registry-uri: oci.stackable.tech
119119
image-registry-username: robot$sdp+github-action-build

.github/workflows/build_hive.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
with:
3636
persist-credentials: false
3737
- id: shard
38-
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
38+
uses: stackabletech/actions/shard@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
3939
with:
4040
product-name: ${{ env.PRODUCT_NAME }}
4141
outputs:
@@ -61,19 +61,19 @@ jobs:
6161
persist-credentials: false
6262

6363
- name: Free Disk Space
64-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
64+
uses: stackabletech/actions/free-disk-space@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6565

6666
- name: Build Product Image
6767
id: build
68-
uses: stackabletech/actions/build-product-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
68+
uses: stackabletech/actions/build-product-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
6969
with:
7070
product-name: ${{ env.PRODUCT_NAME }}
7171
product-version: ${{ matrix.versions }}
7272
build-cache-password: ${{ secrets.BUILD_CACHE_NEXUS_PASSWORD }}
7373
sdp-version: ${{ env.SDP_VERSION }}
7474

7575
- name: Publish Container Image on docker.stackable.tech
76-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
76+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
7777
with:
7878
image-registry-uri: docker.stackable.tech
7979
image-registry-username: github
@@ -83,7 +83,7 @@ jobs:
8383
source-image-uri: localhost/${{ env.PRODUCT_NAME }}:${{ steps.build.outputs.image-manifest-tag }}
8484

8585
- name: Publish Container Image on oci.stackable.tech
86-
uses: stackabletech/actions/publish-image@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
86+
uses: stackabletech/actions/publish-image@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
8787
with:
8888
image-registry-uri: oci.stackable.tech
8989
image-registry-username: robot$sdp+github-action-build
@@ -109,7 +109,7 @@ jobs:
109109
persist-credentials: false
110110

111111
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
112-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
112+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
113113
with:
114114
image-registry-uri: docker.stackable.tech
115115
image-registry-username: github
@@ -118,7 +118,7 @@ jobs:
118118
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
119119

120120
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
121-
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
121+
uses: stackabletech/actions/publish-index-manifest@320eae677555385b3d40e1c3a81d9263b72742e4 # 0.6.0
122122
with:
123123
image-registry-uri: oci.stackable.tech
124124
image-registry-username: robot$sdp+github-action-build

0 commit comments

Comments
 (0)