Skip to content

fix(ci): correct driverpack catalog paths in Dell, HP, and Lenovo update workflows - #2

Merged
OSDeploy merged 2 commits into
mainfrom
copilot/fix-update-failing-job
Jun 12, 2026
Merged

fix(ci): correct driverpack catalog paths in Dell, HP, and Lenovo update workflows#2
OSDeploy merged 2 commits into
mainfrom
copilot/fix-update-failing-job

Conversation

Copilot AI commented Jun 12, 2026

Copy link
Copy Markdown

The Dell, HP, and Lenovo catalog update workflows referenced catalogs\driverpack\ at the repo root — a path that doesn't exist. Catalog files live under OSDCloud\catalogs\driverpack\, as already used correctly by the Microsoft Surface workflow.

Changes

  • .github/workflows/update-catalog-dell.yaml — replace all catalogs\driverpack\dell.xml refs with OSDCloud\catalogs\driverpack\dell.xml
  • .github/workflows/update-catalog-hp.yaml — same fix for hp.xml
  • .github/workflows/update-catalog-lenovo.yaml — same fix for lenovo.xml

All three workflows now align with the existing update-catalog-microsoft.yaml convention:

# Before (broken)
Copy-Item $xmlPath 'catalogs\driverpack\dell.xml' -Force
git add catalogs/driverpack/dell.xml

# After (correct)
Copy-Item $xmlPath 'OSDCloud\catalogs\driverpack\dell.xml' -Force
git add OSDCloud/catalogs/driverpack/dell.xml

@OSDeploy
OSDeploy marked this pull request as ready for review June 12, 2026 05:21
@OSDeploy
OSDeploy self-requested a review as a code owner June 12, 2026 05:21
Copilot AI review requested due to automatic review settings June 12, 2026 05:21
Copilot AI changed the title [WIP] Fix failing GitHub Actions job 'update' fix(ci): correct driverpack catalog paths in Dell, HP, and Lenovo update workflows Jun 12, 2026
@OSDeploy
OSDeploy merged commit 1f5cf58 into main Jun 12, 2026
1 check passed

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Fixes the Dell/HP/Lenovo GitHub Actions catalog update workflows to write and stage driver pack catalog files from the correct repository location (OSDCloud/catalogs/driverpack/), aligning them with the existing Microsoft Surface update workflow’s convention.

Changes:

  • Updated Dell workflow to copy/read/add OSDCloud\catalogs\driverpack\dell.xml / OSDCloud/catalogs/driverpack/dell.xml.
  • Updated HP workflow to copy/read/add OSDCloud\catalogs\driverpack\hp.xml / OSDCloud/catalogs/driverpack/hp.xml.
  • Updated Lenovo workflow to copy/read/add OSDCloud\catalogs\driverpack\lenovo.xml / OSDCloud/catalogs/driverpack/lenovo.xml.

Reviewed changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.

File Description
.github/workflows/update-catalog-dell.yaml Corrects Dell catalog file path to the OSDCloud/catalogs/driverpack directory and stages the correct file for commits.
.github/workflows/update-catalog-hp.yaml Corrects HP catalog file path to the OSDCloud/catalogs/driverpack directory and stages the correct file for commits.
.github/workflows/update-catalog-lenovo.yaml Corrects Lenovo catalog file path to the OSDCloud/catalogs/driverpack directory and stages the correct file for commits.

@OSDeploy
OSDeploy deleted the copilot/fix-update-failing-job branch June 12, 2026 05:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants