Skip to content

Commit 5093a15

Browse files
committed
Merge branch 'main' into fix/hive/cve-2023-34455
2 parents b27ec2e + 9a12e36 commit 5093a15

34 files changed

+282
-190
lines changed

.github/workflows/build_airflow.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Airflow
3+
run-name: |
4+
Build Airflow (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: airflow
@@ -95,16 +97,14 @@ jobs:
9597
- name: Checkout Repository
9698
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9799

98-
- name: Free Disk Space
99-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100100
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
101101
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
102102
with:
103103
image-registry-uri: docker.stackable.tech
104104
image-registry-username: github
105105
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
106106
image-repository: stackable/${{ env.PRODUCT_NAME }}
107-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
107+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
108108

109109
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
110110
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -113,7 +113,7 @@ jobs:
113113
image-registry-username: robot$sdp+github-action-build
114114
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
115115
image-repository: sdp/${{ env.PRODUCT_NAME }}
116-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
116+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
117117

118118
notify:
119119
name: Failure Notification
@@ -126,7 +126,7 @@ jobs:
126126
channel-id: "C07UG6JH44F" # notifications-container-images
127127
payload: |
128128
{
129-
"text": "*${{ github.workflow }}* failed",
129+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
130130
"attachments": [
131131
{
132132
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -152,7 +152,7 @@ jobs:
152152
{
153153
"type": "button",
154154
"text": "Go to workflow run",
155-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
155+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
156156
}
157157
]
158158
}

.github/workflows/build_druid.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Druid
3+
run-name: |
4+
Build Druid (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: druid
@@ -97,16 +99,14 @@ jobs:
9799
- name: Checkout Repository
98100
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
99101

100-
- name: Free Disk Space
101-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
102102
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
103103
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
104104
with:
105105
image-registry-uri: docker.stackable.tech
106106
image-registry-username: github
107107
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
108108
image-repository: stackable/${{ env.PRODUCT_NAME }}
109-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
109+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
110110

111111
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
112112
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -115,7 +115,7 @@ jobs:
115115
image-registry-username: robot$sdp+github-action-build
116116
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
117117
image-repository: sdp/${{ env.PRODUCT_NAME }}
118-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
118+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
119119

120120
notify:
121121
name: Failure Notification
@@ -128,7 +128,7 @@ jobs:
128128
channel-id: "C07UG6JH44F" # notifications-container-images
129129
payload: |
130130
{
131-
"text": "*${{ github.workflow }}* failed",
131+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
132132
"attachments": [
133133
{
134134
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -154,7 +154,7 @@ jobs:
154154
{
155155
"type": "button",
156156
"text": "Go to workflow run",
157-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
157+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
158158
}
159159
]
160160
}

.github/workflows/build_hadoop.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Hadoop
3+
run-name: |
4+
Build Hadoop (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: hadoop
@@ -97,16 +99,14 @@ jobs:
9799
- name: Checkout Repository
98100
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
99101

100-
- name: Free Disk Space
101-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
102102
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
103103
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
104104
with:
105105
image-registry-uri: docker.stackable.tech
106106
image-registry-username: github
107107
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
108108
image-repository: stackable/${{ env.PRODUCT_NAME }}
109-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
109+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
110110

111111
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
112112
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -115,7 +115,7 @@ jobs:
115115
image-registry-username: robot$sdp+github-action-build
116116
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
117117
image-repository: sdp/${{ env.PRODUCT_NAME }}
118-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
118+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
119119

120120
notify:
121121
name: Failure Notification
@@ -128,7 +128,7 @@ jobs:
128128
channel-id: "C07UG6JH44F" # notifications-container-images
129129
payload: |
130130
{
131-
"text": "*${{ github.workflow }}* failed",
131+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
132132
"attachments": [
133133
{
134134
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -154,7 +154,7 @@ jobs:
154154
{
155155
"type": "button",
156156
"text": "Go to workflow run",
157-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
157+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
158158
}
159159
]
160160
}

.github/workflows/build_hbase.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build HBase
3+
run-name: |
4+
Build HBase (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: hbase
@@ -98,16 +100,14 @@ jobs:
98100
- name: Checkout Repository
99101
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
100102

101-
- name: Free Disk Space
102-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
103103
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
104104
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
105105
with:
106106
image-registry-uri: docker.stackable.tech
107107
image-registry-username: github
108108
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
109109
image-repository: stackable/${{ env.PRODUCT_NAME }}
110-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
110+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
111111

112112
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
113113
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -116,7 +116,7 @@ jobs:
116116
image-registry-username: robot$sdp+github-action-build
117117
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
118118
image-repository: sdp/${{ env.PRODUCT_NAME }}
119-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
119+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
120120

121121
notify:
122122
name: Failure Notification
@@ -129,7 +129,7 @@ jobs:
129129
channel-id: "C07UG6JH44F" # notifications-container-images
130130
payload: |
131131
{
132-
"text": "*${{ github.workflow }}* failed",
132+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
133133
"attachments": [
134134
{
135135
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -155,7 +155,7 @@ jobs:
155155
{
156156
"type": "button",
157157
"text": "Go to workflow run",
158-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
158+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
159159
}
160160
]
161161
}

.github/workflows/build_hello-world.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Hello-World
3+
run-name: |
4+
Build Hello-World (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: hello-world
@@ -93,16 +95,14 @@ jobs:
9395
- name: Checkout Repository
9496
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9597

96-
- name: Free Disk Space
97-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
9898
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
9999
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100100
with:
101101
image-registry-uri: docker.stackable.tech
102102
image-registry-username: github
103103
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
104104
image-repository: stackable/${{ env.PRODUCT_NAME }}
105-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
105+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
106106

107107
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
108108
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -111,7 +111,7 @@ jobs:
111111
image-registry-username: robot$sdp+github-action-build
112112
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
113113
image-repository: sdp/${{ env.PRODUCT_NAME }}
114-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
114+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
115115

116116
notify:
117117
name: Failure Notification
@@ -124,7 +124,7 @@ jobs:
124124
channel-id: "C07UG6JH44F" # notifications-container-images
125125
payload: |
126126
{
127-
"text": "*${{ github.workflow }}* failed",
127+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
128128
"attachments": [
129129
{
130130
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -150,7 +150,7 @@ jobs:
150150
{
151151
"type": "button",
152152
"text": "Go to workflow run",
153-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
153+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
154154
}
155155
]
156156
}

.github/workflows/build_hive.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Hive
3+
run-name: |
4+
Build Hive (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: hive
@@ -98,16 +100,14 @@ jobs:
98100
- name: Checkout Repository
99101
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
100102

101-
- name: Free Disk Space
102-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
103103
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
104104
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
105105
with:
106106
image-registry-uri: docker.stackable.tech
107107
image-registry-username: github
108108
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
109109
image-repository: stackable/${{ env.PRODUCT_NAME }}
110-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
110+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
111111

112112
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
113113
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -116,7 +116,7 @@ jobs:
116116
image-registry-username: robot$sdp+github-action-build
117117
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
118118
image-repository: sdp/${{ env.PRODUCT_NAME }}
119-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
119+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
120120

121121
notify:
122122
name: Failure Notification
@@ -129,7 +129,7 @@ jobs:
129129
channel-id: "C07UG6JH44F" # notifications-container-images
130130
payload: |
131131
{
132-
"text": "*${{ github.workflow }}* failed",
132+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
133133
"attachments": [
134134
{
135135
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -155,7 +155,7 @@ jobs:
155155
{
156156
"type": "button",
157157
"text": "Go to workflow run",
158-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
158+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
159159
}
160160
]
161161
}

.github/workflows/build_java-base.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
22
name: Build Java Base
3+
run-name: |
4+
Build Java Base (attempt #${{ github.run_attempt }})
35
46
env:
57
PRODUCT_NAME: java-base
@@ -93,16 +95,14 @@ jobs:
9395
- name: Checkout Repository
9496
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
9597

96-
- name: Free Disk Space
97-
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
9898
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
9999
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
100100
with:
101101
image-registry-uri: docker.stackable.tech
102102
image-registry-username: github
103103
image-registry-password: ${{ secrets.NEXUS_PASSWORD }}
104104
image-repository: stackable/${{ env.PRODUCT_NAME }}
105-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
105+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
106106

107107
- name: Publish and Sign Image Index Manifest to oci.stackable.tech
108108
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -111,7 +111,7 @@ jobs:
111111
image-registry-username: robot$sdp+github-action-build
112112
image-registry-password: ${{ secrets.HARBOR_ROBOT_SDP_GITHUB_ACTION_BUILD_SECRET }}
113113
image-repository: sdp/${{ env.PRODUCT_NAME }}
114-
image-index-manifest-tag: ${{ matrix.versions }}-stackable0.0.0-dev
114+
image-index-manifest-tag: ${{ matrix.versions }}-stackable${{ env.SDP_VERSION }}
115115

116116
notify:
117117
name: Failure Notification
@@ -124,7 +124,7 @@ jobs:
124124
channel-id: "C07UG6JH44F" # notifications-container-images
125125
payload: |
126126
{
127-
"text": "*${{ github.workflow }}* failed",
127+
"text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})",
128128
"attachments": [
129129
{
130130
"pretext": "See the details below for a summary of which job(s) failed.",
@@ -150,7 +150,7 @@ jobs:
150150
{
151151
"type": "button",
152152
"text": "Go to workflow run",
153-
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
153+
"url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}"
154154
}
155155
]
156156
}

0 commit comments

Comments
 (0)