From b1d22a30083896a229b615394ab8e7c32d7b8f5b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 16:58:04 +0100 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 (#7) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- 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/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e8860cc..3a48cf0c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: pdm build - name: Publish Python artifacts on Github artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-artifacts path: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ca182990..7ba70d5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: - name: "Build wheel and sdist" run: pdm build - name: "Upload wheel and sdist" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -55,7 +55,7 @@ jobs: pdm export --prod -f requirements -o requirements.txt - name: Publish frozen requirements.txt - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: requirements path: requirements.txt