Skip to content

Commit a4307f6

Browse files
committed
Merge branch 'main' into fix/hive/cve-2023-34455
2 parents 5093a15 + 0e42f0f commit a4307f6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+479
-55
lines changed

.github/workflows/build_airflow.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 0 1/2 * *' # https://crontab.guru/#0_0_1/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -29,6 +29,8 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
with:
33+
persist-credentials: false
3234
- id: shard
3335
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3436
with:
@@ -43,6 +45,7 @@ jobs:
4345
id-token: write
4446
runs-on: ${{ matrix.runner.name }}
4547
strategy:
48+
fail-fast: false
4649
matrix:
4750
runner:
4851
- {name: "ubuntu-latest", arch: "amd64"}
@@ -51,6 +54,8 @@ jobs:
5154
steps:
5255
- name: Checkout Repository
5356
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
57+
with:
58+
persist-credentials: false
5459

5560
- name: Free Disk Space
5661
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -91,11 +96,14 @@ jobs:
9196
id-token: write
9297
runs-on: ubuntu-latest
9398
strategy:
99+
fail-fast: false
94100
matrix:
95101
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
96102
steps:
97103
- name: Checkout Repository
98104
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
105+
with:
106+
persist-credentials: false
99107

100108
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
101109
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_druid.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
with:
35+
persist-credentials: false
3436
- id: shard
3537
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3638
with:
@@ -45,6 +47,7 @@ jobs:
4547
id-token: write
4648
runs-on: ${{ matrix.runner.name }}
4749
strategy:
50+
fail-fast: false
4851
matrix:
4952
runner:
5053
- {name: "ubuntu-latest", arch: "amd64"}
@@ -53,6 +56,8 @@ jobs:
5356
steps:
5457
- name: Checkout Repository
5558
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
59+
with:
60+
persist-credentials: false
5661

5762
- name: Free Disk Space
5863
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -93,11 +98,14 @@ jobs:
9398
id-token: write
9499
runs-on: ubuntu-latest
95100
strategy:
101+
fail-fast: false
96102
matrix:
97103
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
98104
steps:
99105
- name: Checkout Repository
100106
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
107+
with:
108+
persist-credentials: false
101109

102110
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
103111
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_hadoop.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 2 1/2 * *' # https://crontab.guru/#0_2_1/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -31,6 +31,8 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
34+
with:
35+
persist-credentials: false
3436
- id: shard
3537
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3638
with:
@@ -45,6 +47,7 @@ jobs:
4547
id-token: write
4648
runs-on: ${{ matrix.runner.name }}
4749
strategy:
50+
fail-fast: false
4851
matrix:
4952
runner:
5053
- {name: "ubuntu-latest", arch: "amd64"}
@@ -53,6 +56,8 @@ jobs:
5356
steps:
5457
- name: Checkout Repository
5558
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
59+
with:
60+
persist-credentials: false
5661

5762
- name: Free Disk Space
5863
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -93,11 +98,14 @@ jobs:
9398
id-token: write
9499
runs-on: ubuntu-latest
95100
strategy:
101+
fail-fast: false
96102
matrix:
97103
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
98104
steps:
99105
- name: Checkout Repository
100106
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
107+
with:
108+
persist-credentials: false
101109

102110
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
103111
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_hbase.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 0 2/2 * *' # https://crontab.guru/#0_0_2/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -32,6 +32,8 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
35+
with:
36+
persist-credentials: false
3537
- id: shard
3638
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3739
with:
@@ -46,6 +48,7 @@ jobs:
4648
id-token: write
4749
runs-on: ${{ matrix.runner.name }}
4850
strategy:
51+
fail-fast: false
4952
matrix:
5053
runner:
5154
- {name: "ubuntu-latest", arch: "amd64"}
@@ -54,6 +57,8 @@ jobs:
5457
steps:
5558
- name: Checkout Repository
5659
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
60+
with:
61+
persist-credentials: false
5762

5863
- name: Free Disk Space
5964
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -94,11 +99,14 @@ jobs:
9499
id-token: write
95100
runs-on: ubuntu-latest
96101
strategy:
102+
fail-fast: false
97103
matrix:
98104
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
99105
steps:
100106
- name: Checkout Repository
101107
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
108+
with:
109+
persist-credentials: false
102110

103111
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
104112
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_hello-world.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 1 2/2 * *' # https://crontab.guru/#0_1_2/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -27,6 +27,8 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
with:
31+
persist-credentials: false
3032
- id: shard
3133
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3234
with:
@@ -41,6 +43,7 @@ jobs:
4143
id-token: write
4244
runs-on: ${{ matrix.runner.name }}
4345
strategy:
46+
fail-fast: false
4447
matrix:
4548
runner:
4649
- {name: "ubuntu-latest", arch: "amd64"}
@@ -49,6 +52,8 @@ jobs:
4952
steps:
5053
- name: Checkout Repository
5154
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
55+
with:
56+
persist-credentials: false
5257

5358
- name: Free Disk Space
5459
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -89,11 +94,14 @@ jobs:
8994
id-token: write
9095
runs-on: ubuntu-latest
9196
strategy:
97+
fail-fast: false
9298
matrix:
9399
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
94100
steps:
95101
- name: Checkout Repository
96102
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
103+
with:
104+
persist-credentials: false
97105

98106
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
99107
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_hive.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 2 2/2 * *' # https://crontab.guru/#0_2_2/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -32,6 +32,8 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
35+
with:
36+
persist-credentials: false
3537
- id: shard
3638
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3739
with:
@@ -46,6 +48,7 @@ jobs:
4648
id-token: write
4749
runs-on: ${{ matrix.runner.name }}
4850
strategy:
51+
fail-fast: false
4952
matrix:
5053
runner:
5154
- {name: "ubuntu-latest", arch: "amd64"}
@@ -54,6 +57,8 @@ jobs:
5457
steps:
5558
- name: Checkout Repository
5659
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
60+
with:
61+
persist-credentials: false
5762

5863
- name: Free Disk Space
5964
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -94,11 +99,14 @@ jobs:
9499
id-token: write
95100
runs-on: ubuntu-latest
96101
strategy:
102+
fail-fast: false
97103
matrix:
98104
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
99105
steps:
100106
- name: Checkout Repository
101107
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
108+
with:
109+
persist-credentials: false
102110

103111
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
104112
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_java-base.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
on:
1111
workflow_dispatch:
1212
schedule:
13-
- cron: '0 1 1/2 * *' # https://crontab.guru/#0_1_1/2_*_*
13+
- cron: '0 0 1/2 * *' # https://crontab.guru/#0_0_1/2_*_*
1414
push:
1515
branches: [main]
1616
tags: ['*']
@@ -27,6 +27,8 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
with:
31+
persist-credentials: false
3032
- id: shard
3133
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3234
with:
@@ -41,6 +43,7 @@ jobs:
4143
id-token: write
4244
runs-on: ${{ matrix.runner.name }}
4345
strategy:
46+
fail-fast: false
4447
matrix:
4548
runner:
4649
- {name: "ubuntu-latest", arch: "amd64"}
@@ -49,6 +52,8 @@ jobs:
4952
steps:
5053
- name: Checkout Repository
5154
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
55+
with:
56+
persist-credentials: false
5257

5358
- name: Free Disk Space
5459
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -89,11 +94,14 @@ jobs:
8994
id-token: write
9095
runs-on: ubuntu-latest
9196
strategy:
97+
fail-fast: false
9298
matrix:
9399
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
94100
steps:
95101
- name: Checkout Repository
96102
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
103+
with:
104+
persist-credentials: false
97105

98106
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
99107
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

.github/workflows/build_java-devel.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30+
with:
31+
persist-credentials: false
3032
- id: shard
3133
uses: stackabletech/actions/shard@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
3234
with:
@@ -41,6 +43,7 @@ jobs:
4143
id-token: write
4244
runs-on: ${{ matrix.runner.name }}
4345
strategy:
46+
fail-fast: false
4447
matrix:
4548
runner:
4649
- {name: "ubuntu-latest", arch: "amd64"}
@@ -49,6 +52,8 @@ jobs:
4952
steps:
5053
- name: Checkout Repository
5154
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
55+
with:
56+
persist-credentials: false
5257

5358
- name: Free Disk Space
5459
uses: stackabletech/actions/free-disk-space@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0
@@ -89,11 +94,14 @@ jobs:
8994
id-token: write
9095
runs-on: ubuntu-latest
9196
strategy:
97+
fail-fast: false
9298
matrix:
9399
versions: ${{ fromJson(needs.generate_matrix.outputs.versions) }}
94100
steps:
95101
- name: Checkout Repository
96102
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
103+
with:
104+
persist-credentials: false
97105

98106
- name: Publish and Sign Image Index Manifest to docker.stackable.tech
99107
uses: stackabletech/actions/publish-index-manifest@a3f7587879e9f12e04a29fd26435949aaa4fd59c # 0.2.0

0 commit comments

Comments
 (0)