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 dd5d57f

Browse filesBrowse files
committed
Fix github actions
Signed-off-by: Kwong Tung Nan <tungnan5636@gmail.com>
1 parent f2cc8cd commit dd5d57f
Copy full SHA for dd5d57f

File tree

Expand file treeCollapse file tree

4 files changed

+9
-15
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+9
-15
lines changed

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

Copy file name to clipboardExpand all lines: .github/workflows/chart-lint-test.yaml
+5-9Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,17 @@ jobs:
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
+2-4Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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/publish-ci-docker-image.yml

Copy file name to clipboardExpand all lines: .github/workflows/publish-ci-docker-image.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- 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
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.