Skip to content

Commit 85cc96c

Browse files
Bump the actions group with 3 updates (#4757)
Bumps the actions group with 3 updates: [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: actions - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6ab7036 commit 85cc96c

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/workflows/netperf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ jobs:
5353
gh run download $run_id --dir netperf --pattern ebpf* --repo microsoft/netperf
5454
5555
- name: upload_results_azure_2022_x64
56-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
56+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
5757
with:
5858
name: Test-Logs-netperf_azure_2022_x64
5959
path: netperf/ebpf_azure_2022_x64/ebpf.csv
6060

6161
- name: upload_results_lab_2022_x64
62-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
62+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
6363
with:
6464
name: Test-Logs-netperf_lab_2022_x64
6565
path: netperf/ebpf_lab_2022_x64/ebpf.csv

.github/workflows/ossar-scan.yml

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

5656
- name: Download build artifact
5757
if: (steps.skip_check.outputs.should_skip != 'true') && success()
58-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
58+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
5959
id: download_artifact
6060
with:
6161
name: ${{inputs.build_artifact}}-${{matrix.configurations}}
@@ -81,6 +81,6 @@ jobs:
8181

8282
- name: Upload results to Security tab
8383
if: steps.skip_check.outputs.should_skip != 'true'
84-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047
84+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb
8585
with:
8686
sarif_file: ${{ steps.ossar.outputs.sarifFile }}

.github/workflows/reusable-build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Initialize CodeQL
139139
if: inputs.build_codeql == true && steps.skip_check.outputs.should_skip != 'true'
140-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047
140+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb
141141
with:
142142
languages: 'cpp'
143143

@@ -265,7 +265,7 @@ jobs:
265265
266266
- name: Upload 1ES artifacts
267267
if: steps.skip_check.outputs.should_skip != 'true' && (inputs.build_artifact == 'Build-x64' && matrix.configurations == 'Release')
268-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
268+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
269269
with:
270270
name: 1ES artifacts
271271
path: 1es/**
@@ -285,15 +285,15 @@ jobs:
285285
286286
- name: Upload Build Output
287287
if: always() && (steps.skip_check.outputs.should_skip != 'true') && (inputs.build_artifact != 'none')
288-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
288+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
289289
with:
290290
name: ${{inputs.build_artifact}}-${{matrix.configurations}}
291291
path: ${{github.workspace}}/build-${{ matrix.configurations }}.zip
292292
retention-days: 10
293293

294294
- name: Upload the MSI package
295295
if: inputs.build_msi == true
296-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
296+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
297297
with:
298298
name: ebpf-for-windows - MSI installer (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}})
299299
path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/ebpf-for-windows.msi
@@ -305,7 +305,7 @@ jobs:
305305

306306
- name: Upload the NuGet package
307307
if: inputs.build_nuget == true && (matrix.configurations == 'Release' || matrix.configurations == 'NativeOnlyRelease') && steps.skip_check.outputs.should_skip != 'true'
308-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
308+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
309309
with:
310310
name: ebpf-for-windows - NuGet package (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}})
311311
path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/eBPF-for-Windows.*.nupkg
@@ -324,14 +324,14 @@ jobs:
324324
325325
- name: Upload the NuGet Redist package
326326
if: inputs.build_nuget == true && (matrix.configurations == 'Release' || matrix.configurations == 'NativeOnlyRelease') && steps.skip_check.outputs.should_skip != 'true'
327-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
327+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
328328
with:
329329
name: ebpf-for-windows - NuGet Redist package (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}})
330330
path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/eBPF-for-Windows-Redist.*.nupkg
331331

332332
- name: Upload binlog
333333
if: (success() || failure()) && steps.skip_check.outputs.should_skip != 'true'
334-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
334+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
335335
with:
336336
name: build-binlog-${{env.BUILD_ARTIFACT_NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}}
337337
path: out.binlog
@@ -347,7 +347,7 @@ jobs:
347347
- name: Upload any crash dumps
348348
# Upload crash dumps even if the workflow failed.
349349
if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_dumps.outputs.files_exists == 'true')
350-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
350+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
351351
id: upload_crash_dumps
352352
with:
353353
name: Crash-Dumps-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}}
@@ -356,4 +356,4 @@ jobs:
356356

357357
- name: Perform CodeQL Analysis
358358
if: inputs.build_codeql == true && steps.skip_check.outputs.should_skip != 'true'
359-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047
359+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb

.github/workflows/reusable-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ jobs:
187187
188188
- name: Download build artifact
189189
if: (steps.skip_check.outputs.should_skip != 'true') && success()
190-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
190+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
191191
id: download_artifact
192192
with:
193193
name: ${{inputs.build_artifact}}-${{matrix.configurations}}
@@ -443,7 +443,7 @@ jobs:
443443
- name: Upload any crash dumps
444444
# Upload crash dumps even if the workflow failed.
445445
if: always() && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_dumps.outputs.files_exists == 'true') && (inputs.gather_dumps == true)
446-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
446+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
447447
id: upload_crash_dumps
448448
with:
449449
name: Crash-Dumps-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}}
@@ -462,7 +462,7 @@ jobs:
462462
# Upload test logs even if the workflow failed.
463463
if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_logs.outputs.files_exists == 'true')
464464
id: upload_logs
465-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
465+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
466466
continue-on-error: true
467467
with:
468468
name: Test-Logs-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}}
@@ -482,7 +482,7 @@ jobs:
482482
if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_artifacts.outputs.files_exists == 'true')
483483
id: upload_artifacts
484484
continue-on-error: true
485-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
485+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
486486
with:
487487
name: Artifacts-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}}
488488
path: ${{github.workspace}}\${{env.BUILD_PLATFORM}}\${{env.BUILD_CONFIGURATION}}\Artifacts

.github/workflows/scorecards-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# Upload the results as artifacts (optional).
7272
- name: "Upload artifact"
7373
if: github.ref_name == 'main'
74-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
74+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
7575
with:
7676
name: SARIF file
7777
path: results.sarif
@@ -80,6 +80,6 @@ jobs:
8080
# Upload the results to GitHub's code scanning dashboard.
8181
- name: "Upload to code-scanning"
8282
if: github.ref_name == 'main'
83-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047
83+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb
8484
with:
8585
sarif_file: results.sarif

.github/workflows/upload-perf-results.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
egress-policy: audit
4040

4141
- name: Download performance result artifacts
42-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0
42+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53
4343
with:
4444
name: Test-Logs-${{inputs.result_artifact}}
4545
path: ${{github.workspace}}/results_artifact
@@ -65,7 +65,7 @@ jobs:
6565
6666
# Grab the output from the results directory and upload it as an artifact to debug failures.
6767
- name: Upload data as artifacts for debugging
68-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
68+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
6969
with:
7070
name: Test-Results-${{inputs.result_artifact}}
7171
path: ${{github.workspace}}/results
@@ -105,7 +105,7 @@ jobs:
105105
psql -f ./check_perf_results.sql -v platform='${{inputs.platform}}' --csv > ${{github.workspace}}/results/regression_results.csv
106106
107107
- name: Upload regression results
108-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
108+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4
109109
with:
110110
name: Regression-Results-${{inputs.result_artifact}}
111111
path: ${{github.workspace}}/results/regression_results.csv

0 commit comments

Comments
 (0)