Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit db4c67d

Browse filesBrowse files
committed
Merge branch 'fix-github-actions' into fix-metrics-endpoint
2 parents 1a8981c + dd5d57f commit db4c67d
Copy full SHA for db4c67d

File tree

Expand file treeCollapse file tree

5 files changed

+14
-20
lines changed
Filter options
Expand file treeCollapse file tree

5 files changed

+14
-20
lines changed

‎.github/workflows/chart-lint-test.yaml

Copy file name to clipboardExpand all lines: .github/workflows/chart-lint-test.yaml
+6-10Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3.1.0
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616

1717
- name: Set up Helm
18-
uses: azure/setup-helm@v3
19-
with:
20-
version: v3.8.1
18+
uses: azure/setup-helm@v4
2119

2220
# Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
2321
# yamllint (https://github.com/adrienverge/yamllint) which require Python
2422
- name: Set up Python
25-
uses: actions/setup-python@v5.1.0
23+
uses: actions/setup-python@v5
2624
with:
27-
python-version: 3.7
25+
python-version: 3.13
2826

2927
- name: Set up chart-testing
30-
uses: helm/chart-testing-action@v2.2.1
31-
with:
32-
version: v3.5.1
28+
uses: helm/chart-testing-action@v2
3329

3430
- name: Run chart-testing (list-changed)
3531
id: list-changed
@@ -43,7 +39,7 @@ jobs:
4339
run: ct lint --config ct.yaml
4440

4541
- name: Create kind cluster
46-
uses: helm/kind-action@v1.10.0
42+
uses: helm/kind-action@v1
4743
if: steps.list-changed.outputs.changed == 'true'
4844

4945
- name: Run chart-testing (install)

‎.github/workflows/chart-release.yaml

Copy file name to clipboardExpand all lines: .github/workflows/chart-release.yaml
+3-5Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
20+
uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323

@@ -27,12 +27,10 @@ jobs:
2727
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
2828
2929
- name: Install Helm
30-
uses: azure/setup-helm@5119fcb9089d432beecbf79bb2c7915207344b78 # v3.5
31-
with:
32-
version: v3.13.0
30+
uses: azure/setup-helm@v4
3331

3432
- name: Run chart-releaser
35-
uses: helm/chart-releaser-action@a917fd15b20e8b64b94d9158ad54cd6345335584 # v1.6.0
33+
uses: helm/chart-releaser-action@v1
3634
with:
3735
charts_dir: charts
3836
config: cr.yaml

‎.github/workflows/generate-chart-readme.yaml

Copy file name to clipboardExpand all lines: .github/workflows/generate-chart-readme.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install readme-generator-for-helm
1818
run: npm install -g @bitnami/readme-generator-for-helm
1919
- name: Checkout
20-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
20+
uses: actions/checkout@v4
2121
with:
2222
path: charts
2323
ref: ${{github.event.pull_request.head.ref}}

‎.github/workflows/publish-ci-docker-image.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish-ci-docker-image.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
publish-ci-docker-image:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Login to GitHub Container Registry
11-
uses: docker/login-action@v1
11+
uses: docker/login-action@v3
1212
with:
1313
registry: ghcr.io
1414
username: ${{ github.actor }}

‎.github/workflows/publish-deb-package.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish-deb-package.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
runs-on: ${{ matrix.os }}
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
- name: Set package version
2323
if: github.event_name == 'push' # For push event
2424
run: |
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set package version (manual dispatch)
2828
if: github.event_name == 'workflow_dispatch' # For manual dispatch
2929
run: echo "packageVersion=${{ github.event.inputs.packageVersion }}" >> "$GITHUB_ENV"
30-
- uses: actions-rs/toolchain@v1
30+
- uses: dtolnay/rust-toolchain@v1
3131
with:
3232
toolchain: stable
3333
- name: Install dependencies

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.