Skip to content

Commit 0743616

Browse files
build(deps): bump the github-actions group with 6 updates
Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `6` | | [tj-actions/changed-files](https://github.com/tj-actions/changed-files) | `44` | `47` | | [mikefarah/yq](https://github.com/mikefarah/yq) | `4.32.2` | `4.52.4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `7` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `tj-actions/changed-files` from 44 to 47 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@v44...v47) Updates `mikefarah/yq` from 4.32.2 to 4.52.4 - [Release notes](https://github.com/mikefarah/yq/releases) - [Changelog](https://github.com/mikefarah/yq/blob/master/release_notes.txt) - [Commits](mikefarah/yq@v4.32.2...v4.52.4) Updates `actions/download-artifact` from 4 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v7) --- 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: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: tj-actions/changed-files dependency-version: '47' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: mikefarah/yq dependency-version: 4.52.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent dba2802 commit 0743616

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/kics.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: Upload KICS SARIF
6363
if: env.ADVANCED_SECURITY == 'true'
64-
uses: github/codeql-action/upload-sarif@v3
64+
uses: github/codeql-action/upload-sarif@v4
6565
continue-on-error: true
6666
with:
6767
sarif_file: "results-dir/results.sarif"
@@ -70,7 +70,7 @@ jobs:
7070

7171
- name: Upload KICS results as artifacts
7272
if: env.ADVANCED_SECURITY == 'true'
73-
uses: actions/upload-artifact@v4
73+
uses: actions/upload-artifact@v6
7474
with:
7575
name: kics-results
7676
path: results-dir/

.github/workflows/test-and-release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
charts: ${{ steps.matrix.outputs.charts }}
2929
has-changes: ${{ steps.matrix.outputs.has-changes }}
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434

3535
- name: Get changed files
3636
id: changes
3737
if: ${{ github.event_name != 'workflow_dispatch' }}
38-
uses: tj-actions/changed-files@v44
38+
uses: tj-actions/changed-files@v47
3939

4040
- name: Detect changed charts
4141
id: matrix
@@ -122,10 +122,10 @@ jobs:
122122
chart: ${{ fromJSON(needs.detect-changes.outputs.charts) }}
123123

124124
steps:
125-
- uses: actions/checkout@v4
125+
- uses: actions/checkout@v6
126126

127127
- uses: azure/setup-helm@v4.3.1
128-
- uses: mikefarah/yq@v4.32.2
128+
- uses: mikefarah/yq@v4.52.4
129129
- uses: azure/setup-kubectl@v4
130130

131131
- name: Update Helm repositories
@@ -169,7 +169,7 @@ jobs:
169169
helm package . --version ${{ env.CHART_VERSION }}
170170
171171
- name: Upload chart artifact
172-
uses: actions/upload-artifact@v4
172+
uses: actions/upload-artifact@v6
173173
with:
174174
name: chart-${{ matrix.chart }}-${{ env.CHART_VERSION }}
175175
path: charts/${{ matrix.chart }}/${{ matrix.chart }}-${{ env.CHART_VERSION }}.tgz
@@ -188,10 +188,10 @@ jobs:
188188
charts-published: ${{ steps.collect.outputs.charts }}
189189

190190
steps:
191-
- uses: actions/checkout@v4
191+
- uses: actions/checkout@v6
192192

193193
- uses: azure/setup-helm@v4.3.1
194-
- uses: mikefarah/yq@v4.32.2
194+
- uses: mikefarah/yq@v4.52.4
195195

196196
- name: Get chart version
197197
id: vars
@@ -202,7 +202,7 @@ jobs:
202202
echo "REPOSITORY=${repository@L}" >> $GITHUB_ENV
203203
204204
- name: Download chart artifact
205-
uses: actions/download-artifact@v4
205+
uses: actions/download-artifact@v7
206206
with:
207207
name: chart-${{ matrix.chart }}-${{ env.CHART_VERSION }}
208208
path: charts/${{ matrix.chart }}/
@@ -243,12 +243,12 @@ jobs:
243243
contents: write # Required for chart-releaser to push to gh-pages branch
244244

245245
steps:
246-
- uses: actions/checkout@v4
246+
- uses: actions/checkout@v6
247247
with:
248248
fetch-depth: 0
249249

250250
- uses: azure/setup-helm@v4.3.1
251-
- uses: mikefarah/yq@v4.32.2
251+
- uses: mikefarah/yq@v4.52.4
252252

253253
- name: Get repository info
254254
run: |

0 commit comments

Comments
 (0)