build(deps): bump actions/upload-artifact from 6 to 7

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2026-02-28 02:02:26 +00:00 committed by GitHub
parent 0f1504fb8a
commit 6e9dade269
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 6 additions and 6 deletions

View File

@ -246,7 +246,7 @@ jobs:
- name: Full stack tests | if tests failed, upload report - name: Full stack tests | if tests failed, upload report
id: e2e-report id: e2e-report
if: ${{ failure() && steps.e2e-tests.conclusion == 'failure' }} if: ${{ failure() && steps.e2e-tests.conclusion == 'failure' }}
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0 uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with: with:
name: e2e-report-${{ matrix.feature }} name: e2e-report-${{ matrix.feature }}
path: /home/runner/work/Ocelot-Social/Ocelot-Social/cypress/reports/cucumber_html_report path: /home/runner/work/Ocelot-Social/Ocelot-Social/cypress/reports/cucumber_html_report

View File

@ -88,7 +88,7 @@ jobs:
run: npm run validate run: npm run validate
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
with: with:
name: dist name: dist
path: packages/ui/dist/ path: packages/ui/dist/

View File

@ -50,7 +50,7 @@ jobs:
run: npm run build run: npm run build
- name: Upload build artifacts - name: Upload build artifacts
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
with: with:
name: ui-dist name: ui-dist
path: packages/ui/dist/ path: packages/ui/dist/

View File

@ -67,7 +67,7 @@ jobs:
echo "✓ Storybook build verified!" echo "✓ Storybook build verified!"
- name: Upload Storybook artifacts - name: Upload Storybook artifacts
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
with: with:
name: storybook-static name: storybook-static
path: packages/ui/storybook-static/ path: packages/ui/storybook-static/

View File

@ -51,7 +51,7 @@ jobs:
run: npm run test:coverage run: npm run test:coverage
- name: Upload coverage report - name: Upload coverage report
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
if: always() if: always()
with: with:
name: coverage-report name: coverage-report

View File

@ -54,7 +54,7 @@ jobs:
run: npm run test:visual run: npm run test:visual
- name: Upload test results - name: Upload test results
uses: actions/upload-artifact@v6 uses: actions/upload-artifact@v7
if: failure() if: failure()
with: with:
name: visual-test-results name: visual-test-results