diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 0a1a9d0ec1..2ee07366db 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -21,6 +21,7 @@ # Copyright (c) Microsoft Corporation. # SPDX-License-Identifier: BSD-2-Clause-Patent + name: "CodeQL" on: @@ -151,12 +152,15 @@ jobs: print(f'ci_setup_supported={str(ci_setup_supported).lower()}', file=fh) print(f'setup_supported={str(setup_supported).lower()}', file=fh) + + - name: Get Cargo Tool Details id: get_cargo_tool_details shell: python run: | import os import requests + import sys GITHUB_REPO = "sagiegurari/cargo-make" api_url = f"https://api.github.com/repos/{GITHUB_REPO}/releases/tags/0.37.9" @@ -184,6 +188,7 @@ jobs: print(f'cargo_make_cache_key={cache_key}', file=fh) print(f'cargo_make_version={latest_cargo_make_version}', file=fh) + - name: Attempt to Load cargo-make From Cache id: cargo_make_cache uses: actions/cache@v4 @@ -459,3 +464,5 @@ jobs: # Optional category for the results. Used to differentiate multiple results for one commit. # Each package is a separate category. category: ${{ matrix.package }} + +