From 6809305008958a50520722f9fa431d678c2a40f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 07:09:18 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3.1.2 to 3.1.3 in /build_package Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3.1.2...v3.1.3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- build_package/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_package/action.yml b/build_package/action.yml index ae7a815..329d29e 100644 --- a/build_package/action.yml +++ b/build_package/action.yml @@ -95,7 +95,7 @@ runs: - name: "Upload wheel to artifacts" if: inputs.wheel == 'true' - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v3.1.3 with: name: ${{ inputs.PACKAGE_NAME }}-v${{ steps.version.outputs.VERSION }}_wheel path: ./dist/* @@ -116,7 +116,7 @@ runs: - name: "Upload wheelhouse to artifacts" if: inputs.wheelhouse == 'true' - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v3.1.3 with: name: ${{ inputs.PACKAGE_NAME }}-v${{ steps.version.outputs.VERSION }}-wheelhouse-${{ runner.os }}-${{ inputs.python-version }} path: '*.zip'