Skip to content

Commit a0ffcdd

Browse files
Bump actions/checkout from 5 to 6 in the github-actions group (#329)
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 18e4c29 commit a0ffcdd

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/functional.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
ref: ${{ inputs.ref || github.ref }}
2121

.github/workflows/helm-lint.yaml

Lines changed: 1 addition & 1 deletion
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@v5
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ inputs.ref }}
2020
fetch-depth: 0

.github/workflows/publish-charts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
chart-version: ${{ steps.semver.outputs.version }}
2121
steps:
2222
- name: Check out the repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ inputs.ref || github.ref }}
2626
# This is important for the semver action to work correctly

.github/workflows/publish-images.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Check out the repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ inputs.ref || github.ref }}
2626

@@ -67,7 +67,7 @@ jobs:
6767
security-events: write # required for pushing SARIF files
6868
steps:
6969
- name: Check out the repository
70-
uses: actions/checkout@v5
70+
uses: actions/checkout@v6
7171
with:
7272
ref: ${{ inputs.ref || github.ref }}
7373

@@ -119,7 +119,7 @@ jobs:
119119
runs-on: ubuntu-latest
120120
steps:
121121
- name: Check out the repository
122-
uses: actions/checkout@v5
122+
uses: actions/checkout@v6
123123
with:
124124
ref: ${{ inputs.ref || github.ref }}
125125

.github/workflows/tox.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Check out the repository
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
ref: ${{ inputs.ref || github.ref }}
2424

0 commit comments

Comments
 (0)