Skip to content

Commit 26352a1

Browse files
dependabot[bot]J12934
authored andcommitted
Bump the github-actions-version-updates group across 1 directory with 3 updates
Bumps the github-actions-version-updates group with 3 updates in the /.github/workflows directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) Updates `github/codeql-action` from 4.30.9 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@16140ae...4e94bd1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-version-updates - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-version-updates ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1cf1075 commit 26352a1

3 files changed

Lines changed: 31 additions & 31 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -78,25 +78,25 @@ jobs:
7878
chmod +x ./task
7979
8080
- name: Archive Kind
81-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
81+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8282
with:
8383
name: kind
8484
path: ./kind
8585

8686
- name: Archive Kubectl
87-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
87+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
8888
with:
8989
name: kubectl
9090
path: ./kubectl
9191

9292
- name: Archive Helm
93-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
93+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9494
with:
9595
name: helm
9696
path: ./linux-amd64/helm
9797

9898
- name: Archive Task
99-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
99+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
100100
with:
101101
name: task
102102
path: ./task
@@ -113,7 +113,7 @@ jobs:
113113
steps:
114114
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
115115
- name: Download Helm
116-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
116+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
117117
with:
118118
name: helm
119119
path: ./helm
@@ -131,7 +131,7 @@ jobs:
131131
helm plugin install https://github.com/helm-unittest/helm-unittest.git --version ${{ env.HELM_PLUGIN_UNITTEST_VERSION }}
132132
133133
- name: Download Task
134-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
134+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
135135
with:
136136
name: task
137137
path: ./task
@@ -217,7 +217,7 @@ jobs:
217217
run: make docker-export-${{ matrix.component }}
218218

219219
- name: Upload Image As Artifact
220-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
220+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
221221
with:
222222
name: ${{ matrix.component }}-image
223223
path: ./operator/${{ matrix.component }}.tar
@@ -256,7 +256,7 @@ jobs:
256256
run: make docker-export
257257

258258
- name: Upload Image As Artifact
259-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
259+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
260260
with:
261261
name: auto-discovery-image
262262
path: ./auto-discovery/kubernetes/auto-discovery-kubernetes.tar
@@ -284,7 +284,7 @@ jobs:
284284
go vet ./...
285285
286286
- name: Download Task
287-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
287+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
288288
with:
289289
name: task
290290
path: ./task
@@ -294,19 +294,19 @@ jobs:
294294
chmod +x ./task/task && sudo mv ./task/task /usr/local/bin/task
295295
296296
- name: Download Kind
297-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
297+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
298298
with:
299299
name: kind
300300
path: ./kind
301301

302302
- name: Download Kubectl
303-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
303+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
304304
with:
305305
name: kubectl
306306
path: ./kubectl
307307

308308
- name: Download Helm
309-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
309+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
310310
with:
311311
name: helm
312312
path: ./helm
@@ -336,7 +336,7 @@ jobs:
336336
run: task docker-export
337337

338338
- name: Upload Image As Artifact
339-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
339+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
340340
with:
341341
name: auto-discovery-pull-secret-extractor
342342
path: ./auto-discovery/kubernetes/pull-secret-extractor/auto-discovery-secret-extractor.tar
@@ -389,7 +389,7 @@ jobs:
389389
run: make docker-export
390390

391391
- name: Upload Image As Artifact
392-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
392+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
393393
with:
394394
name: auto-discovery-cloud-aws-image
395395
path: ./auto-discovery/cloud-aws/auto-discovery-cloud-aws.tar
@@ -418,7 +418,7 @@ jobs:
418418
run: make docker-export-sdk
419419

420420
- name: Upload Artifact
421-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
421+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
422422
with:
423423
name: ${{ matrix.sdk }}-image
424424
path: ./${{ matrix.sdk }}/nodejs/${{ matrix.sdk }}.tar
@@ -463,7 +463,7 @@ jobs:
463463
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2
464464

465465
- name: Download Task
466-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
466+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
467467
with:
468468
name: task
469469
path: ./task
@@ -473,19 +473,19 @@ jobs:
473473
chmod +x ./task/task && sudo mv ./task/task /usr/local/bin/task
474474
475475
- name: Download Kind
476-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
476+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
477477
with:
478478
name: kind
479479
path: ./kind
480480

481481
- name: Download Kubectl
482-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
482+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
483483
with:
484484
name: kubectl
485485
path: ./kubectl
486486

487487
- name: Download Helm
488-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
488+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
489489
with:
490490
name: helm
491491
path: ./helm
@@ -507,7 +507,7 @@ jobs:
507507
run: task test:unit
508508

509509
- name: Download Parser SDK Image
510-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
510+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
511511
with:
512512
name: parser-sdk-image
513513
path: /tmp
@@ -518,7 +518,7 @@ jobs:
518518
docker images | grep sdk
519519
520520
- name: Download Operator Image
521-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
521+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
522522
with:
523523
name: operator-image
524524
path: ./operator
@@ -529,7 +529,7 @@ jobs:
529529
docker images | grep operator
530530
531531
- name: Download Lurker Image
532-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
532+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
533533
with:
534534
name: lurker-image
535535
path: ./operator
@@ -616,7 +616,7 @@ jobs:
616616
uses: oven-sh/setup-bun@735343b667d3e6f658f44d0eca948eb6282f2b76 # v2.0.2
617617

618618
- name: Download Task
619-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
619+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
620620
with:
621621
name: task
622622
path: ./task
@@ -626,19 +626,19 @@ jobs:
626626
chmod +x ./task/task && sudo mv ./task/task /usr/local/bin/task
627627
628628
- name: Download Kind
629-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
629+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
630630
with:
631631
name: kind
632632
path: ./kind
633633

634634
- name: Download Kubectl
635-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
635+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
636636
with:
637637
name: kubectl
638638
path: ./kubectl
639639

640640
- name: Download Helm
641-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
641+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
642642
with:
643643
name: helm
644644
path: ./helm
@@ -660,7 +660,7 @@ jobs:
660660
run: task test:unit
661661

662662
- name: Download Parser SDK Image
663-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
663+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
664664
with:
665665
name: hook-sdk-image
666666
path: /tmp
@@ -671,7 +671,7 @@ jobs:
671671
docker images | grep sdk
672672
673673
- name: Download Operator Image
674-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
674+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
675675
with:
676676
name: operator-image
677677
path: ./operator
@@ -682,7 +682,7 @@ jobs:
682682
docker images | grep operator
683683
684684
- name: Download Lurker Image
685-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
685+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
686686
with:
687687
name: lurker-image
688688
path: ./operator

.github/workflows/mega-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# Upload MegaLinter artifacts
5858
- name: Archive production artifacts
5959
if: ${{ success() }} || ${{ failure() }}
60-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
60+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6161
with:
6262
name: MegaLinter reports
6363
path: |

.github/workflows/oss-scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333

3434
# Upload the results to GitHub's code scanning dashboard.
3535
- name: "Upload to code-scanning"
36-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
36+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
3737
with:
3838
sarif_file: results.sarif

0 commit comments

Comments
 (0)