From 8b190fc992111f386755eeeb9ddadbd417d7edf4 Mon Sep 17 00:00:00 2001 From: Nicholas McDonnell <50747025+mcdonnnj@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:39:44 -0500 Subject: [PATCH] Remove unnecessary `.zip` extension from artifact name When you download an artifact from GitHub it will automatically have a `.zip` extension added to it, thus there is no need to include the extension in the artifact's name. --- .github/workflows/baseline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/baseline.yml b/.github/workflows/baseline.yml index 1a13fde21a09..0fb2be5ac6bd 100644 --- a/.github/workflows/baseline.yml +++ b/.github/workflows/baseline.yml @@ -50,6 +50,6 @@ jobs: - name: Use the Upload Artifact GitHub Action uses: actions/upload-artifact@v4 with: - name: ${{ needs.generate-name.outputs.v_current_run_timestamp }}_all_CVEs_at_midnight.zip + name: ${{ needs.generate-name.outputs.v_current_run_timestamp }}_all_CVEs_at_midnight path: ./cves.zip overwrite: true