From 4f13d54b21e5959a318a5df4fe2b9a067cdd298d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 16:50:44 +0000 Subject: [PATCH] Bump the github-artifacts group with 2 updates Bumps the github-artifacts group with 2 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 4.0.0 to 4.3.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.0.0...v4.3.0) Updates `actions/download-artifact` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-artifacts - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-artifacts ... Signed-off-by: dependabot[bot] --- .github/workflows/code.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 364ff43..a0a44bc 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -91,7 +91,7 @@ jobs: pipx run build - name: Upload sdist and wheel as artifacts - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4.3.0 with: name: ${{ env.DIST_WHEEL_PATH }} path: dist @@ -135,7 +135,7 @@ jobs: echo "DIST_LOCKFILE_PATH=lockfiles-${{ env.CONTAINER_PYTHON }}-dist-${{ github.sha }}" >> $GITHUB_ENV - name: Download wheel and lockfiles - uses: actions/download-artifact@v4.1.0 + uses: actions/download-artifact@v4.1.1 with: path: artifacts/ pattern: "*dist*" @@ -214,7 +214,7 @@ jobs: steps: - name: Download wheel and lockfiles - uses: actions/download-artifact@v4.1.0 + uses: actions/download-artifact@v4.1.1 with: path: artifacts/ pattern: "*dist*"