Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .azurepipelines/MuDevOpsWrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resources:
type: github
endpoint: microsoft
name: microsoft/mu_devops
ref: refs/tags/v18.0.5
ref: refs/tags/v18.0.6

parameters:
- name: do_ci_build
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,11 @@ jobs:

packages = [d for d in os.listdir() if d.strip().lower().endswith('pkg')]

# Ensure the package can actually be built for IA32 or X64
# Ensure the package can actually be built for the target architectures
archs = [a.strip() for a in 'IA32,X64'.split(',')]
for package in list(packages):
dsc = [os.path.join(package, f) for f in os.listdir(package) if f.endswith('.dsc')]
if not any('IA32' in l or 'X64' in l for d in dsc for l in open(d) if 'SUPPORTED_ARCHITECTURES' in l):
if not any(arch in l for d in dsc for l in open(d) if 'SUPPORTED_ARCHITECTURES' in l for arch in archs):
packages.remove(package)

packages.sort()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-assignment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ on:
jobs:
apply:

uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/IssueAssignment.yml@v18.0.6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/label-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ on:

jobs:
apply:
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/Labeler.yml@v18.0.6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/label-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ on:
jobs:
sync:

uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/LabelSyncer.yml@v18.0.6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
draft:
name: Draft Releases

uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/ReleaseDrafter.yml@v18.0.6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ on:
jobs:
check:

uses: microsoft/mu_devops/.github/workflows/Stale.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/Stale.yml@v18.0.6
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/triage-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ on:
jobs:
triage:

uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v18.0.5
uses: microsoft/mu_devops/.github/workflows/IssueTriager.yml@v18.0.6
secrets: inherit
Loading