From a588a177aa9bb5f73bbef65e26b947054ac37aed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:30:58 -0500 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3.1.3 to 4.0.0 (#792) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3.1.3 to 4.0.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/a8a3f3ad30e3422c9c7b888a15615d19a852ae32...c7d193f32edcb7bfad88892161225aeda64e9392) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/binary-releases.yml | 10 +++++----- .github/workflows/ci.yml | 4 ++-- .github/workflows/compile-pypi.yml | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/binary-releases.yml b/.github/workflows/binary-releases.yml index cfa692ff..1ba204d5 100644 --- a/.github/workflows/binary-releases.yml +++ b/.github/workflows/binary-releases.yml @@ -77,7 +77,7 @@ jobs: bash local.sh python -m build -sw openllm-python/ - name: Upload artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: binary-artefacts path: openllm-python/dist/* @@ -211,14 +211,14 @@ jobs: done - name: Upload staged archive if: runner.os != 'Linux' - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: staged-${{ runner.os }} path: openllm-python/packaging/* if-no-files-found: error - name: Upload archive if: runner.os == 'Linux' - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: standalone path: openllm-python/packaging/* @@ -274,13 +274,13 @@ jobs: mkdir installers mv build/*/release/*/*.{exe,msi} installers - name: Upload binaries - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: standalone path: openllm-python/archives/* if-no-files-found: error - name: Upload installers - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: installers path: openllm-python/installers/* diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f33e953..d7a4a453 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: - name: Disambiguate coverage filename run: mv .coverage ".coverage.${{ matrix.os }}.${{ matrix.python-version }}" - name: Upload coverage data - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: coverage-data path: .coverage.* @@ -84,7 +84,7 @@ jobs: hatch run coverage:report-xml openllm-python hatch run coverage:report-uncovered-html openllm-python - name: Upload uncovered HTML report - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: uncovered-html-report path: htmlcov diff --git a/.github/workflows/compile-pypi.yml b/.github/workflows/compile-pypi.yml index f1243d7d..b5bb337c 100644 --- a/.github/workflows/compile-pypi.yml +++ b/.github/workflows/compile-pypi.yml @@ -86,7 +86,7 @@ jobs: run: hatch build working-directory: ${{ matrix.directory }} - name: Upload artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: python-artefacts path: ${{ matrix.directory }}/dist/* @@ -128,7 +128,7 @@ jobs: CIBW_ARCHS_MACOS: '${{ matrix.buildplatform[2] }}' MYPYPATH: /project/typings - name: Upload wheels as workflow artifacts - uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # ratchet:actions/upload-artifact@v3 + uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # ratchet:actions/upload-artifact@v3 with: name: ${{ matrix.buildplatform[1] }}-mypyc-wheels path: ./wheelhouse/*.whl