From a4d7966f347a63ce1eb79f868dc3442227bd88a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 10:13:32 +0000 Subject: [PATCH] build(deps): Bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...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] --- .github/workflows/checks.yml | 8 ++++---- .github/workflows/release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 8776db22e..0391f7210 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -92,7 +92,7 @@ jobs: - name: Build JS extension + Python wheel run: ./scripts/full_build.sh - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: buckaroo-build path: | @@ -401,7 +401,7 @@ jobs: run: bash scripts/test_playwright_screenshots.sh - name: Upload Theme Screenshots if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: theme-screenshots path: packages/buckaroo-js-core/screenshots/ @@ -494,14 +494,14 @@ jobs: # ── Upload artifacts ── - name: Upload before screenshots if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: styling-screenshots-before path: packages/buckaroo-js-core/screenshots/before/ if-no-files-found: ignore - name: Upload after screenshots if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: styling-screenshots-after path: packages/buckaroo-js-core/screenshots/after/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8dc4378c4..cced2b1b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -149,7 +149,7 @@ jobs: # python scripts/update_changelog.py changelog_entry.md # sed -i 's/^version = ".*"/version = "NEW"/' pyproject.toml # uv lock - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: changelog-${{ steps.versions.outputs.new }} path: /tmp/changelog_entry.md