From 12cc03bb86011c157f672ea9a488e32353d4e4de Mon Sep 17 00:00:00 2001 From: yxxhero <11087727+yxxhero@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:18:17 +0800 Subject: [PATCH] build(deps): bump actions/upload-artifact and actions/download-artifact from 3 to 4 (#1234) Signed-off-by: yxxhero --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ee96c797..189137a2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,7 +37,7 @@ jobs: run: make check test - name: Archive built binaries run: tar -cvf built-binaries.tar helmfile diff-yamls dyff - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: built-binaries-${{ github.run_id }} path: built-binaries.tar @@ -104,7 +104,7 @@ jobs: with: go-version-file: go.mod - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: built-binaries-${{ github.run_id }} - name: Extract tar to get built binaries @@ -136,7 +136,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: built-binaries-${{ github.run_id }} - name: Extract tar to get built binaries