From 709fdd290adf37f18dadd1c2451cba07c79099ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Dec 2024 15:48:45 +0000 Subject: [PATCH] build(deps): bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/upload-artifact` from 4.4.3 to 4.5.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882...6f51ac03b9356f520e9adb1b1b7802705f340c2b) Updates `github/codeql-action` from 3.27.9 to 3.28.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/df409f7d9260372bd5f19e5b04e83cb3c43714ae...48ab28a6f5dbc2a99bf1e0131198dd8f1df78169) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/fuzzing.yml | 6 +++--- .github/workflows/posix.yml | 14 +++++++------- .github/workflows/scorecards.yml | 4 ++-- .github/workflows/windows.yml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml index 385ccc75..7881c898 100644 --- a/.github/workflows/fuzzing.yml +++ b/.github/workflows/fuzzing.yml @@ -118,7 +118,7 @@ jobs: python ubpf/dictionary_generator.py >build/bin/dictionary.txt - name: Upload fuzzer as artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: fuzzer-${{ matrix.platform }}-${{ matrix.arch }} path: build/bin/* @@ -173,7 +173,7 @@ jobs: dir build\bin\RelWithDebInfo - name: Upload fuzzer as artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: fuzzer-${{ matrix.platform }}-${{ matrix.arch }} path: | @@ -261,7 +261,7 @@ jobs: - name: Upload artifacts if: always() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: fuzzing-artifacts-${{ matrix.platform }}-${{ matrix.arch }} path: artifacts/ diff --git a/.github/workflows/posix.yml b/.github/workflows/posix.yml index aef34dba..d9984ca1 100644 --- a/.github/workflows/posix.yml +++ b/.github/workflows/posix.yml @@ -71,7 +71,7 @@ jobs: - name: Initialize CodeQL if: inputs.build_codeql == true - uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae + uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 with: languages: 'cpp' @@ -173,7 +173,7 @@ jobs: - name: Upload scan-build report if: inputs.scan_build == true - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: scan-build_report path: ${{github.workspace}}/scan_build_report @@ -274,7 +274,7 @@ jobs: - name: Upload the DEB package if: inputs.upload_packages == true && inputs.platform == 'ubuntu-latest' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: linux_deb_package path: ${{ steps.package_locations.outputs.REL_DEB_PACKAGE_PATH }} @@ -282,7 +282,7 @@ jobs: - name: Upload the RPM package if: inputs.upload_packages == true && inputs.platform == 'ubuntu-latest' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: linux_rpm_package path: ${{ steps.package_locations.outputs.REL_RPM_PACKAGE_PATH }} @@ -290,7 +290,7 @@ jobs: - name: Upload the Linux TGZ package if: inputs.upload_packages == true && inputs.platform == 'ubuntu-latest' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: linux_tgz_package path: ${{ steps.package_locations.outputs.REL_TGZ_PACKAGE_PATH }} @@ -298,7 +298,7 @@ jobs: - name: Upload the macOS TGZ package if: inputs.upload_packages == true && inputs.platform == 'macos-latest' - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: macos_tgz_package path: ${{ steps.package_locations.outputs.REL_TGZ_PACKAGE_PATH }} @@ -306,4 +306,4 @@ jobs: - name: Perform CodeQL Analysis if: inputs.build_codeql == true - uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae + uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 diff --git a/.github/workflows/scorecards.yml b/.github/workflows/scorecards.yml index 35656465..edd2d659 100644 --- a/.github/workflows/scorecards.yml +++ b/.github/workflows/scorecards.yml @@ -63,7 +63,7 @@ jobs: # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 with: name: SARIF file path: results.sarif @@ -71,6 +71,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@df409f7d9260372bd5f19e5b04e83cb3c43714ae # v3.27.9 + uses: github/codeql-action/upload-sarif@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 # v3.28.0 with: sarif_file: results.sarif diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 9738f7ae..40b307e9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -57,7 +57,7 @@ jobs: - name: Initialize CodeQL if: inputs.build_codeql == true - uses: github/codeql-action/init@df409f7d9260372bd5f19e5b04e83cb3c43714ae + uses: github/codeql-action/init@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169 with: languages: 'cpp' @@ -116,7 +116,7 @@ jobs: - name: Upload the Windows TGZ package if: inputs.upload_packages == true - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 + uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b with: name: windows_tgz_package path: ${{ steps.package_locations.outputs.REL_TGZ_PACKAGE_PATH }} @@ -124,4 +124,4 @@ jobs: - name: Perform CodeQL Analysis if: inputs.build_codeql == true - uses: github/codeql-action/analyze@df409f7d9260372bd5f19e5b04e83cb3c43714ae + uses: github/codeql-action/analyze@48ab28a6f5dbc2a99bf1e0131198dd8f1df78169