From 013d74ea664576ea311a06c42e403733cdf65a62 Mon Sep 17 00:00:00 2001 From: Owen Jones Date: Wed, 4 Mar 2026 13:43:19 +0000 Subject: [PATCH] Bumped upload-artifact action to v7 v7 of upload-artifact now supports uploading single file (unzipped) artifacts - the Github UI appears to have changed to reflect this and is now treating the `pulp-repo-versions.yml` artifact as a yaml file even though it's actually a zip file bumping the action to v7 and just uploading the yaml file seems like the best option here --- .github/workflows/package-update-kayobe.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/package-update-kayobe.yml b/.github/workflows/package-update-kayobe.yml index 0ce2ffc0..54041f80 100644 --- a/.github/workflows/package-update-kayobe.yml +++ b/.github/workflows/package-update-kayobe.yml @@ -61,8 +61,9 @@ jobs: # For now, just create an artifact that the user can download. - name: Upload pulp-repo-versions.yml artifact if: ${{ steps.git-diff.outputs.changed == 'true' }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: pulp-repo-versions.yml path: stackhpc-kayobe-config/etc/kayobe/pulp-repo-versions.yml + archive: false retention-days: 1