We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb8c57 commit d0c3688Copy full SHA for d0c3688
.github/workflows/build.yml
@@ -47,7 +47,7 @@ jobs:
47
go build -v -ldflags "-X main.Version=$VERSION" -o disk-health-monitor${{ matrix.suffix }} .
48
49
- name: Upload build artifacts
50
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4 # Updated from v3 to v4
51
with:
52
name: disk-health-monitor-${{ matrix.os }}-${{ matrix.arch }}
53
path: disk-health-monitor${{ matrix.suffix }}
@@ -62,8 +62,8 @@ jobs:
62
- uses: actions/checkout@v4
63
64
- name: Download all artifacts
65
- uses: actions/download-artifact@v3
66
-
+ uses: actions/download-artifact@v4 # Updated from v3 to v4
+
67
- name: Display structure of downloaded files
68
run: ls -R
69
0 commit comments