From c7b9f105085841202a28bc191409589b22caf22e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 15:14:29 -0700 Subject: [PATCH] Bump the actions group with 2 updates (#3927) Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/upload-artifact` from 4.4.1 to 4.4.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/604373da6381bf24206979c74d06a550515601b9...b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882) Updates `actions/cache` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2...3624ceb22c1c5a301c8db4169662070a689d9ea8) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/netperf.yml | 4 ++-- .github/workflows/nuget_update.yaml | 2 +- .github/workflows/reusable-build.yml | 14 +++++++------- .github/workflows/reusable-test.yml | 8 ++++---- .github/workflows/scorecards-analysis.yml | 2 +- .github/workflows/upload-perf-results.yml | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/netperf.yml b/.github/workflows/netperf.yml index ea92e548e..ebeb8271f 100644 --- a/.github/workflows/netperf.yml +++ b/.github/workflows/netperf.yml @@ -53,13 +53,13 @@ jobs: gh run download $run_id --dir netperf --pattern ebpf* --repo microsoft/netperf - name: upload_results_azure_2022_x64 - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: Test-Logs-netperf_azure_2022_x64 path: netperf/ebpf_azure_2022_x64/ebpf.csv - name: upload_results_lab_2022_x64 - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: Test-Logs-netperf_lab_2022_x64 path: netperf/ebpf_lab_2022_x64/ebpf.csv diff --git a/.github/workflows/nuget_update.yaml b/.github/workflows/nuget_update.yaml index 5761192a8..003c066bb 100644 --- a/.github/workflows/nuget_update.yaml +++ b/.github/workflows/nuget_update.yaml @@ -44,7 +44,7 @@ jobs: - name: Cache nuget packages - uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 + uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 env: cache-name: cache-nuget-modules with: diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 43469f4c3..15c722fe5 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -154,7 +154,7 @@ jobs: - name: Cache nuget packages if: steps.skip_check.outputs.should_skip != 'true' - uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 + uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 env: cache-name: cache-nuget-modules with: @@ -164,7 +164,7 @@ jobs: - name: Cache verifier project # The hash is based on the HEAD of the ebpf-verifier submodule, the Directory.Build.props file, and the build variant. if: steps.skip_check.outputs.should_skip != 'true' - uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 + uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 env: cache-name: cache-verifier-project with: @@ -237,7 +237,7 @@ jobs: - name: Upload Build Output if: always() && (steps.skip_check.outputs.should_skip != 'true') && (inputs.build_artifact != 'none') - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: ${{inputs.build_artifact}}-${{matrix.configurations}} path: ${{github.workspace}}/build-${{ matrix.configurations }}.zip @@ -245,7 +245,7 @@ jobs: - name: Upload the MSI package if: inputs.build_msi == true - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: ebpf-for-windows - MSI installer (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}}) path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/ebpf-for-windows.msi @@ -257,7 +257,7 @@ jobs: - name: Upload the NuGet package if: inputs.build_nuget == true && (matrix.configurations == 'Release' || matrix.configurations == 'NativeOnlyRelease') && steps.skip_check.outputs.should_skip != 'true' - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: ebpf-for-windows - NuGet package (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}}) path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/eBPF-for-Windows.*.nupkg @@ -269,7 +269,7 @@ jobs: - name: Upload the NuGet Redist package if: inputs.build_nuget == true && (matrix.configurations == 'Release' || matrix.configurations == 'NativeOnlyRelease') && steps.skip_check.outputs.should_skip != 'true' - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: ebpf-for-windows - NuGet Redist package (${{inputs.build_artifact}}_${{env.BUILD_CONFIGURATION}}) path: ${{github.workspace}}/${{env.BUILD_PLATFORM}}/${{env.BUILD_CONFIGURATION}}/eBPF-for-Windows-Redist.*.nupkg @@ -285,7 +285,7 @@ jobs: - name: Upload any crash dumps # Upload crash dumps even if the workflow failed. if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_dumps.outputs.files_exists == 'true') - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 id: upload_crash_dumps with: name: Crash-Dumps-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}} diff --git a/.github/workflows/reusable-test.yml b/.github/workflows/reusable-test.yml index 7df00cd33..e8e70080b 100644 --- a/.github/workflows/reusable-test.yml +++ b/.github/workflows/reusable-test.yml @@ -142,7 +142,7 @@ jobs: # Add cache entry for any choco packages that are installed. # The cache key is based on the hash of this file so if any choco packages are added or removed, the cache will be invalidated. if: (inputs.gather_dumps == true) && (steps.skip_check.outputs.should_skip != 'true') - uses: actions/cache@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 + uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 env: cache-name: cache-choco-packages with: @@ -408,7 +408,7 @@ jobs: - name: Upload any crash dumps # Upload crash dumps even if the workflow failed. if: always() && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_dumps.outputs.files_exists == 'true') && (inputs.gather_dumps == true) - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 id: upload_crash_dumps with: name: Crash-Dumps-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}} @@ -427,7 +427,7 @@ jobs: # Upload test logs even if the workflow failed. if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_logs.outputs.files_exists == 'true') id: upload_logs - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 continue-on-error: true with: name: Test-Logs-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}} @@ -447,7 +447,7 @@ jobs: if: (success() || failure()) && (steps.skip_check.outputs.should_skip != 'true') && (steps.check_artifacts.outputs.files_exists == 'true') id: upload_artifacts continue-on-error: true - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: Artifacts-${{env.NAME}}-${{env.BUILD_PLATFORM}}-${{env.BUILD_CONFIGURATION}} path: ${{github.workspace}}\${{env.BUILD_PLATFORM}}\${{env.BUILD_CONFIGURATION}}\Artifacts diff --git a/.github/workflows/scorecards-analysis.yml b/.github/workflows/scorecards-analysis.yml index a22e42c8d..eb4da0466 100644 --- a/.github/workflows/scorecards-analysis.yml +++ b/.github/workflows/scorecards-analysis.yml @@ -67,7 +67,7 @@ jobs: # Upload the results as artifacts (optional). - name: "Upload artifact" if: github.ref_name == 'main' - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: SARIF file path: results.sarif diff --git a/.github/workflows/upload-perf-results.yml b/.github/workflows/upload-perf-results.yml index 6643165c2..e3eaaf5b3 100644 --- a/.github/workflows/upload-perf-results.yml +++ b/.github/workflows/upload-perf-results.yml @@ -65,7 +65,7 @@ jobs: # Grab the output from the results directory and upload it as an artifact to debug failures. - name: Upload data as artifacts for debugging - uses: actions/upload-artifact@604373da6381bf24206979c74d06a550515601b9 + uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 with: name: Test-Results-${{inputs.result_artifact}} path: ${{github.workspace}}/results