Skip to content

Commit c420779

Browse files
authored
Merge branch 'main' into support-lifecycle-hooks
2 parents cbf3c16 + a1dfd8b commit c420779

File tree

16 files changed

+96
-15
lines changed

16 files changed

+96
-15
lines changed

.asf.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ github:
1212
gh-pages: {}
1313
ghp_branch: gh-pages
1414
ghp_path: ~
15+
dependabot_alerts: false
16+
dependabot_updates: true

.github/actions/setup-helm

Submodule setup-helm updated 8281 files

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
open-pull-requests-limit: 10
8+
commit-message:
9+
prefix: " build(deps-dev): "
10+
include: "scope"
11+
- package-ecosystem: "gitsubmodule"
12+
schedule:
13+
interval: daily
14+
directory: "/"
15+
open-pull-requests-limit: 10
16+
commit-message:
17+
prefix: " build(deps-dev): "
18+
include: "scope"

.github/workflows/chart-rebuild.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,20 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
persist-credentials: false
1818
ref: 'gh-pages'
1919
fetch-depth: 0
2020

21+
- name: Build Setup Helm
22+
run: cd ./.github/actions/setup-helm && npm run-script build
23+
2124
- name: Set up Helm
2225
uses: ./.github/actions/setup-helm
2326
with:
24-
version: v3.10.0
27+
version: v3.14.4
28+
id: install
2529

2630
- name: Rebuild index.yaml
2731
env:

.github/workflows/chart-releaser.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
persist-credentials: false
@@ -25,10 +25,14 @@ jobs:
2525
git config user.name "$GITHUB_ACTOR"
2626
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2727
28+
- name: Build Setup Helm
29+
run: cd ./.github/actions/setup-helm && npm run-script build
30+
2831
- name: Install Helm
2932
uses: ./.github/actions/setup-helm
3033
with:
31-
version: v3.10.0
34+
version: v3.14.4
35+
id: install
3236

3337
- name: Run chart-releaser
3438
uses: ./.github/actions/chart-releaser-action

.github/workflows/chart-test.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,19 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 0
2626
persist-credentials: false
2727
submodules: recursive
2828

29+
- name: Build Setup Helm
30+
run: cd ./.github/actions/setup-helm && npm run-script build
31+
2932
- name: Set up Helm
3033
uses: ./.github/actions/setup-helm
3134
with:
32-
version: v3.10.0
35+
version: v3.14.4
3336

3437
- name: Set up chart-testing
3538
uses: ./.github/actions/chart-testing-action
@@ -41,16 +44,20 @@ jobs:
4144
runs-on: ubuntu-latest
4245
steps:
4346
- name: Checkout
44-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4548
with:
4649
fetch-depth: 0
4750
persist-credentials: false
4851
submodules: recursive
4952

53+
- name: Build Setup Helm
54+
run: cd ./.github/actions/setup-helm && npm run-script build
55+
5056
- name: Set up Helm
5157
uses: ./.github/actions/setup-helm
5258
with:
53-
version: v3.10.0
59+
version: v3.14.4
60+
id: install
5461

5562
- name: Set up chart-testing
5663
uses: ./.github/actions/chart-testing-action

0 commit comments

Comments
 (0)