From 01ce51be366943d10402b54eb8ee8a5cfefae4da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:06:06 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 3 to 4 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] --- .github/workflows/build.yaml | 2 +- .github/workflows/release.yaml | 2 +- .github/workflows/tag-to-release.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6ab6ea3f..f8a11256 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,7 +22,7 @@ jobs: # https://github.com/actions/download-artifact#limitations run: tar -cvf dist.tar dist - name: Upload binaries tar file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist.tar path: dist.tar diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0e8a6dbb..5a51e296 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -60,7 +60,7 @@ jobs: - name: Tar up binaries run: tar -cvf dist.tar dist - name: Upload binaries tar file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist.tar path: dist.tar diff --git a/.github/workflows/tag-to-release.yaml b/.github/workflows/tag-to-release.yaml index b4eb0133..f7aac819 100644 --- a/.github/workflows/tag-to-release.yaml +++ b/.github/workflows/tag-to-release.yaml @@ -25,7 +25,7 @@ jobs: - name: Tar up binaries run: tar -cvf dist.tar dist - name: Upload binaries tar file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist.tar path: dist.tar