Skip to content

Commit 173a3cb

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [helm/chart-testing-action](https://github.com/helm/chart-testing-action) and [helm/kind-action](https://github.com/helm/kind-action). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `helm/chart-testing-action` from 2.7.0 to 2.8.0 - [Release notes](https://github.com/helm/chart-testing-action/releases) - [Commits](helm/chart-testing-action@v2.7.0...v2.8.0) Updates `helm/kind-action` from 1.12.0 to 1.13.0 - [Release notes](https://github.com/helm/kind-action/releases) - [Commits](helm/kind-action@v1.12.0...v1.13.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: helm/chart-testing-action dependency-version: 2.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: helm/kind-action dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 470308f commit 173a3cb

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-images.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
- name: Login to OCI Registry
2323
id: login-ocir
2424
uses: oracle-actions/login-ocir@v1.3.0
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout code
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
- name: Login to OCI Registry
5050
id: login-ocir
5151
uses: oracle-actions/login-ocir@v1.3.0

.github/workflows/chart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
with:
1717
fetch-depth: 0
1818
- name: Set up Helm
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
python-version: 3.8
2626
- name: Set up chart-testing
27-
uses: helm/chart-testing-action@v2.7.0
27+
uses: helm/chart-testing-action@v2.8.0
2828
- name: Run chart-testing (list-changed)
2929
id: list-changed
3030
run: |
@@ -35,7 +35,7 @@ jobs:
3535
- name: Run chart-testing (lint)
3636
run: ct lint --config .ct.yaml --target-branch ${{ github.event.repository.default_branch }}
3737
- name: Create kind cluster
38-
uses: helm/kind-action@v1.12.0
38+
uses: helm/kind-action@v1.13.0
3939
if: steps.list-changed.outputs.changed == 'true'
4040
- name: Run chart-testing (install)
4141
run: ct install --config .ct.yaml --target-branch ${{ github.event.repository.default_branch }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- name: Setup Rust
1616
uses: dtolnay/rust-toolchain@master
1717
with:
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout code
29-
uses: actions/checkout@v5
29+
uses: actions/checkout@v6
3030
- name: Setup Rust
3131
uses: dtolnay/rust-toolchain@master
3232
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
packages: write
1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
- name: Login to GitHub Container Registry
1919
uses: docker/login-action@v3
2020
with:
@@ -48,7 +48,7 @@ jobs:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- name: Checkout
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252
with:
5353
fetch-depth: 0
5454
- name: Configure Git

0 commit comments

Comments
 (0)