build(deps): bump actions/upload-artifact and actions/download-artifact from 3 to 4 (#1234)

Signed-off-by: yxxhero <aiopsclub@163.com>
This commit is contained in:
yxxhero 2023-12-18 11:18:17 +08:00 committed by GitHub
parent 64e905a268
commit 12cc03bb86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@ jobs:
run: make check test run: make check test
- name: Archive built binaries - name: Archive built binaries
run: tar -cvf built-binaries.tar helmfile diff-yamls dyff run: tar -cvf built-binaries.tar helmfile diff-yamls dyff
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v4
with: with:
name: built-binaries-${{ github.run_id }} name: built-binaries-${{ github.run_id }}
path: built-binaries.tar path: built-binaries.tar
@ -104,7 +104,7 @@ jobs:
with: with:
go-version-file: go.mod go-version-file: go.mod
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v4
with: with:
name: built-binaries-${{ github.run_id }} name: built-binaries-${{ github.run_id }}
- name: Extract tar to get built binaries - name: Extract tar to get built binaries
@ -136,7 +136,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v4
with: with:
name: built-binaries-${{ github.run_id }} name: built-binaries-${{ github.run_id }}
- name: Extract tar to get built binaries - name: Extract tar to get built binaries