From b2e4840a88c23681019822a2a2036bf3b2de34c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Aug 2026 14:27:06 +0000 Subject: [PATCH] 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/annual-parity.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/annual-parity.yml b/.github/workflows/annual-parity.yml index 604e6d0..ffdf14c 100644 --- a/.github/workflows/annual-parity.yml +++ b/.github/workflows/annual-parity.yml @@ -71,7 +71,7 @@ jobs: --fail-on-threshold - name: Upload parity artifacts if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: annual-daylight-parity-${{ github.run_id }} path: artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5145982..6564c7a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: run: | python -m pip install --force-reinstall dist/*.whl python -c "from foton import Engine; print(Engine().capabilities())" - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: wheel-${{ matrix.os }}-py${{ matrix.python }} path: dist/* @@ -65,7 +65,7 @@ jobs: with: command: sdist args: --out dist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: sdist path: dist/*