From 48c2456cd1d0c5d8453b429b2aa9b614a1bdf4ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Mar 2025 17:31:55 +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 4.1.9 to 4.2.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.9...v4.2.1) Updates `actions/upload-artifact` from 4.6.1 to 4.6.2 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.6.1...v4.6.2) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch 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 b62e3ce..3124048 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@v4.2.2 - name: Download Package - uses: actions/download-artifact@v4.1.9 + uses: actions/download-artifact@v4.2.1 with: name: Packages path: dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 32e84d8..5656d5a 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@v4.6.1 + uses: actions/upload-artifact@v4.6.2 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@v4.1.9 + uses: actions/download-artifact@v4.2.1 with: name: tests path: tests - name: Download Package - uses: actions/download-artifact@v4.1.9 + uses: actions/download-artifact@v4.2.1 with: name: Packages path: dist