Skip to content

Commit d0c3688

Browse files
committed
Fix upload-artifact issue
1 parent 9cb8c57 commit d0c3688

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
go build -v -ldflags "-X main.Version=$VERSION" -o disk-health-monitor${{ matrix.suffix }} .
4848
4949
- name: Upload build artifacts
50-
uses: actions/upload-artifact@v3
50+
uses: actions/upload-artifact@v4 # Updated from v3 to v4
5151
with:
5252
name: disk-health-monitor-${{ matrix.os }}-${{ matrix.arch }}
5353
path: disk-health-monitor${{ matrix.suffix }}
@@ -62,8 +62,8 @@ jobs:
6262
- uses: actions/checkout@v4
6363

6464
- name: Download all artifacts
65-
uses: actions/download-artifact@v3
66-
65+
uses: actions/download-artifact@v4 # Updated from v3 to v4
66+
6767
- name: Display structure of downloaded files
6868
run: ls -R
6969

0 commit comments

Comments
 (0)