Skip to content

Commit 864a07d

Browse files
authored
Merge branch 'master' into fix/word-cloud-druid-topn-sort
2 parents 933dc88 + 7c76fd3 commit 864a07d

134 files changed

Lines changed: 6348 additions & 2132 deletions

File tree

Some content is hidden

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

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ updates:
44

55
- package-ecosystem: "github-actions"
66
directory: "/"
7+
ignore:
8+
# Ignore temporarily as release schedule is too mentally taxing for dep-handling maintainers
9+
# Additionally, very few PRs are reviewed by this action.
10+
- dependency-name: anthropics/claude-code-action
711
schedule:
812
interval: "daily"
913

.github/workflows/check_db_migration_confict.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
2828
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2929
- name: Check and notify
30-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
30+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
3131
with:
3232
github-token: ${{ github.token }}
3333
script: |

.github/workflows/claude.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
pull-requests: write
4545
steps:
4646
- name: Comment access denied
47-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
47+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4848
with:
4949
script: |
5050
const message = `👋 Hi @${{ github.event.comment.user.login || github.event.review.user.login || github.event.issue.user.login }}!
@@ -76,7 +76,7 @@ jobs:
7676
fetch-depth: 1
7777

7878
- name: Run Claude PR Action
79-
uses: anthropics/claude-code-action@6e2bd52842c65e914eba5c8badd17560bd26b5de # beta
79+
uses: anthropics/claude-code-action@5fb899572b81d2bb648d4d187173a2f423a9677c # beta
8080
with:
8181
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
8282
timeout_minutes: "60"

.github/workflows/ephemeral-env-pr-close.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
7272
- name: Comment (success)
7373
if: steps.describe-services.outputs.active == 'true'
74-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
74+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
7575
with:
7676
github-token: ${{github.token}}
7777
script: |

.github/workflows/ephemeral-env.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Get event SHA
6666
id: get-sha
6767
if: steps.eval-label.outputs.result == 'up'
68-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
68+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
6969
with:
7070
github-token: ${{ secrets.GITHUB_TOKEN }}
7171
script: |
@@ -96,7 +96,7 @@ jobs:
9696
core.setOutput("sha", prSha);
9797
9898
- name: Looking for feature flags in PR description
99-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
99+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
100100
id: eval-feature-flags
101101
if: steps.eval-label.outputs.result == 'up'
102102
with:
@@ -118,7 +118,7 @@ jobs:
118118
return results;
119119
120120
- name: Reply with confirmation comment
121-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
121+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
122122
if: steps.eval-label.outputs.result == 'up'
123123
with:
124124
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -250,7 +250,7 @@ jobs:
250250
251251
- name: Fail on missing container image
252252
if: steps.check-image.outcome == 'failure'
253-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
253+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
254254
with:
255255
github-token: ${{ github.token }}
256256
script: |
@@ -324,7 +324,7 @@ jobs:
324324
echo "ip=$(aws ec2 describe-network-interfaces --network-interface-ids ${{ steps.get-eni.outputs.eni }} | jq -r '.NetworkInterfaces | first | .Association.PublicIp')" >> $GITHUB_OUTPUT
325325
- name: Comment (success)
326326
if: ${{ success() }}
327-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
327+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
328328
with:
329329
github-token: ${{github.token}}
330330
script: |
@@ -337,7 +337,7 @@ jobs:
337337
});
338338
- name: Comment (failure)
339339
if: ${{ failure() }}
340-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
340+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
341341
with:
342342
github-token: ${{github.token}}
343343
script: |

.github/workflows/no-hold-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-24.04
1818
steps:
1919
- name: Check for 'hold' label
20-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
20+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
2121
with:
2222
github-token: ${{secrets.GITHUB_TOKEN}}
2323
script: |

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
yarn install --immutable
5858
5959
- name: Cache pre-commit environments
60-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
60+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
6161
with:
6262
path: ~/.cache/pre-commit
6363
key: pre-commit-v2-${{ runner.os }}-py${{ matrix.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Cache npm
5252
if: env.HAS_TAGS
53-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
53+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
5454
with:
5555
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
5656
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
@@ -64,7 +64,7 @@ jobs:
6464
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
6565
- name: Cache npm
6666
if: env.HAS_TAGS
67-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
67+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
6868
id: npm-cache # use this to check for `cache-hit` (`steps.npm-cache.outputs.cache-hit != 'true'`)
6969
with:
7070
path: ${{ steps.npm-cache-dir-path.outputs.dir }}

.github/workflows/showtime-trigger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- name: Security Check - Authorize Maintainers Only
3939
id: auth
40-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
40+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
with:

.github/workflows/superset-helm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
CR_RELEASE_NAME_TEMPLATE: "superset-helm-chart-{{ .Version }}"
102102

103103
- name: Open Pull Request
104-
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
104+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
105105
with:
106106
script: |
107107
const branchName = '${{ env.branch_name }}';

0 commit comments

Comments
 (0)