From 2b9abbbdfc6cf8f989c24db61e69b77a9a35f98f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Jan 2026 22:16:40 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4.4.3 to 6.0.0 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.4.3 to 6.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882...b7c566a772e6b6bfb58ed0dc250532a479d7789f) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- .github/workflows/integration.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- .github/workflows/security-audit.yml | 10 +++++----- .github/workflows/security.yml | 6 +++--- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 6888ce6..dba5c3b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -219,7 +219,7 @@ jobs: EOF - name: Upload documentation artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: documentation path: _site diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2377f78..b6577de 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -79,7 +79,7 @@ jobs: docker save cicd-hyper-a-registry:test cicd-hyper-a-engine:test cicd-hyper-a-adapter:test | gzip > images.tar.gz - name: Upload images - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: docker-images path: images.tar.gz @@ -427,7 +427,7 @@ jobs: - name: Upload logs on failure if: failure() - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: e2e-failure-logs path: deploy/compose-logs.txt diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 521fe88..81bb089 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -161,7 +161,7 @@ jobs: Compress-Archive -Path dist/* -DestinationPath hypatia-${{ needs.prepare.outputs.version }}-${{ matrix.target }}.zip - name: Upload artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: hypatia-${{ matrix.target }} path: hypatia-${{ needs.prepare.outputs.version }}-${{ matrix.target }}.${{ matrix.archive }} @@ -214,7 +214,7 @@ jobs: tar -czvf ../hypatia-registry-${{ needs.prepare.outputs.version }}-x86_64-linux.tar.gz * - name: Upload artifact - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: hypatia-registry-x86_64-linux path: registry/hypatia-registry-${{ needs.prepare.outputs.version }}-x86_64-linux.tar.gz diff --git a/.github/workflows/security-audit.yml b/.github/workflows/security-audit.yml index 3d5d130..27750f3 100644 --- a/.github/workflows/security-audit.yml +++ b/.github/workflows/security-audit.yml @@ -75,7 +75,7 @@ jobs: fi - name: Upload audit results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: rust-audit-report path: rust-audit-report.json @@ -143,7 +143,7 @@ jobs: run: cargo deny check 2>&1 | tee cargo-deny-report.txt || true - name: Upload deny results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: cargo-deny-report path: cargo-deny-report.txt @@ -192,7 +192,7 @@ jobs: echo '```' >> haskell-audit-report.md - name: Upload audit results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: haskell-audit-report path: registry/haskell-audit-report.md @@ -456,7 +456,7 @@ jobs: fi - name: Upload license report - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: license-compliance-report path: license-report.md @@ -518,7 +518,7 @@ jobs: EOF - name: Upload SBOM artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: sbom path: | diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index b202a0a..b886002 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -52,7 +52,7 @@ jobs: fi - name: Upload audit results - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: rust-audit-results path: rust-audit.json @@ -204,7 +204,7 @@ jobs: cargo cyclonedx --format xml --output-cdx rust-sbom.cdx.xml - name: Upload SBOM artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: rust-sbom path: | @@ -263,7 +263,7 @@ jobs: fi - name: Upload SBOM artifacts - uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3 + uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 with: name: haskell-sbom path: registry/haskell-sbom.cdx.json