We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5d78f2 commit b04c822Copy full SHA for b04c822
.github/workflows/ci.yaml
@@ -69,7 +69,7 @@ jobs:
69
- name: Run tests and generate coverage report
70
run: make build/cover.out
71
- name: Archive code coverage results
72
- uses: actions/upload-artifact@v4
+ uses: actions/upload-artifact@v5
73
with:
74
name: code-coverage
75
path: build/cover.out
internal/core/constants.go
@@ -22,7 +22,7 @@ func GetUploadArtifactAction(isSelfHostedRunner bool) string {
22
if isSelfHostedRunner {
23
return "actions/upload-artifact@v2"
24
} else {
25
- return "actions/upload-artifact@v4"
+ return "actions/upload-artifact@v5"
26
}
27
28
0 commit comments