diff --git a/.github/dependabot.yml b/.github/dependabot.yml index efe68808..ff19530d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -50,8 +50,8 @@ updates: time: "06:00" ignore: # Ignore dependencies that are synced from mu_devops - - dependency-name: "microsoft/mu_devops" - - dependency-name: "github/codeql-action" + - dependency-name: "microsoft/mu_devops*" + - dependency-name: "github/codeql-action*" commit-message: prefix: "GitHub Action" labels: diff --git a/Containers/Ubuntu-22/Dockerfile b/Containers/Ubuntu-22/Dockerfile index a46af921..162beb03 100644 --- a/Containers/Ubuntu-22/Dockerfile +++ b/Containers/Ubuntu-22/Dockerfile @@ -106,8 +106,8 @@ RUN wget -O - https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${ RUN mkdir -p iasl_temp && cd iasl_temp && \ wget -O iasl_${IASL_VERSION}.nupkg "https://pkgs.dev.azure.com/projectmu/acpica/_apis/packaging/feeds/mu_iasl/nuget/packages/edk2-acpica-iasl/versions/${IASL_VERSION}/content?api-version=6.0-preview.1" && \ - unzip iasl_${IASL_VERSION}.nupkg -d iasl_pkg_contents && \ - cp iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \ + unzip iasl_${IASL_VERSION}.nupkg -d /iasl_pkg_contents && \ + cp /iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \ cd .. && rm -rf iasl_temp RUN wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb" && \ diff --git a/Containers/Ubuntu-24/Dockerfile b/Containers/Ubuntu-24/Dockerfile index 802b590c..81969caf 100644 --- a/Containers/Ubuntu-24/Dockerfile +++ b/Containers/Ubuntu-24/Dockerfile @@ -103,8 +103,8 @@ RUN wget -O - https://www.nasm.us/pub/nasm/releasebuilds/${NASM_VERSION}/nasm-${ RUN mkdir -p iasl_temp && cd iasl_temp && \ wget -O iasl_${IASL_VERSION}.nupkg "https://pkgs.dev.azure.com/projectmu/acpica/_apis/packaging/feeds/mu_iasl/nuget/packages/edk2-acpica-iasl/versions/${IASL_VERSION}/content?api-version=6.0-preview.1" && \ - unzip iasl_${IASL_VERSION}.nupkg -d iasl_pkg_contents && \ - cp iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \ + unzip iasl_${IASL_VERSION}.nupkg -d /iasl_pkg_contents && \ + cp /iasl_pkg_contents/edk2-acpica-iasl/Linux-x86/iasl /usr/bin/iasl && chmod +x /usr/bin/iasl && \ cd .. && rm -rf iasl_temp RUN wget -q "https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/packages-microsoft-prod.deb" && \