Skip to content

Commit 0cb4971

Browse files
Repo File Sync: Update mu_devops to v18.0.6 (#177)
synced local file(s) with [microsoft/mu_devops](https://github.com/microsoft/mu_devops). Signed-off-by: Project Mu UEFI Bot <uefibot@microsoft.com> Co-authored-by: mu-automation[bot] <204385837+mu-automation[bot]@users.noreply.github.com>
1 parent 8b2c4d9 commit 0cb4971

9 files changed

Lines changed: 13 additions & 12 deletions

File tree

.azurepipelines/MuDevOpsWrapper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resources:
1919
type: github
2020
endpoint: microsoft
2121
name: microsoft/mu_devops
22-
ref: refs/tags/v18.0.5
22+
ref: refs/tags/v18.0.6
2323

2424
parameters:
2525
- name: do_ci_build

.github/workflows/clangpdb-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ concurrency:
3333
jobs:
3434
package-matrix:
3535
name: Gather Repository Packages
36-
uses: microsoft/mu_devops/.github/workflows/PackageMatrix.yml@v18.0.5
36+
uses: microsoft/mu_devops/.github/workflows/PackageMatrix.yml@v18.0.6
3737
with:
3838
ci-config: '.pytool/CISettings.py'
3939
python-version: "3.12"
@@ -49,7 +49,7 @@ jobs:
4949

5050
needs: package-matrix
5151

52-
uses: microsoft/mu_devops/.github/workflows/PackageCi.yml@v18.0.5
52+
uses: microsoft/mu_devops/.github/workflows/PackageCi.yml@v18.0.6
5353

5454
with:
5555
runner: windows-latest
@@ -65,7 +65,7 @@ jobs:
6565

6666
needs: package-matrix
6767

68-
uses: microsoft/mu_devops/.github/workflows/PackageCi.yml@v18.0.5
68+
uses: microsoft/mu_devops/.github/workflows/PackageCi.yml@v18.0.6
6969

7070
with:
7171
runner: ubuntu-latest

.github/workflows/codeql.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,11 @@ jobs:
6868
6969
packages = [d for d in os.listdir() if d.strip().lower().endswith('pkg')]
7070
71-
# Ensure the package can actually be built for IA32 or X64
71+
# Ensure the package can actually be built for the target architectures
72+
archs = [a.strip() for a in 'IA32,X64'.split(',')]
7273
for package in list(packages):
7374
dsc = [os.path.join(package, f) for f in os.listdir(package) if f.endswith('.dsc')]
74-
if not any('IA32' in l or 'X64' in l for d in dsc for l in open(d) if 'SUPPORTED_ARCHITECTURES' in l):
75+
if not any(arch in l for d in dsc for l in open(d) if 'SUPPORTED_ARCHITECTURES' in l for arch in archs):
7576
packages.remove(package)
7677
7778
packages.sort()

.github/workflows/issue-assignment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ on:
1919
jobs:
2020
apply:
2121

22-
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v18.0.5
22+
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v18.0.6
2323
secrets: inherit

.github/workflows/label-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ on:
3131

3232
jobs:
3333
apply:
34-
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v18.0.5
34+
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v18.0.6
3535
secrets: inherit

.github/workflows/label-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ on:
2525
jobs:
2626
sync:
2727

28-
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v18.0.5
28+
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v18.0.6
2929
secrets: inherit

.github/workflows/release-draft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
draft:
3030
name: Draft Releases
3131

32-
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v18.0.5
32+
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v18.0.6
3333
secrets: inherit

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ on:
2525
jobs:
2626
check:
2727

28-
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v18.0.5
28+
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v18.0.6
2929
secrets: inherit

.github/workflows/triage-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ on:
2020
jobs:
2121
triage:
2222

23-
uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v18.0.5
23+
uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v18.0.6
2424
secrets: inherit

0 commit comments

Comments
 (0)