From 107b9b480a9282b057555dbf424789425847183b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 15:16:36 +0000 Subject: [PATCH] Bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v6.0.0...v7.0.0) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/test.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4e6613b..a72f365 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v6.0.1 - name: Download Package - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f142edb..c0ca1d4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -49,7 +49,7 @@ jobs: pip install scons scons -j4 -C tests - name: Upload compilation results - uses: actions/upload-artifact@v5.0.0 + uses: actions/upload-artifact@v6.0.0 with: name: tests if-no-files-found: error @@ -85,13 +85,13 @@ jobs: python-version: ${{ matrix.python }} - name: Download compiled tests - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: tests path: tests - name: Download Package - uses: actions/download-artifact@v6.0.0 + uses: actions/download-artifact@v7.0.0 with: name: Packages path: dist