Skip to content

Commit 8b72183

Browse files
committed
Github deprecated actions/upload-artifact@v3; upgrade to v4.
1 parent 3b07648 commit 8b72183

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Test
2626
run: go test -short -v ./... -coverpkg "github.com/prequel-dev/plz4,github.com/prequel-dev/plz4/internal/...,github.com/prequel-dev/plz4/pkg/..." -coverprofile coverage.out
2727
- name: Upload coverage as artifact
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: coverage.out
3131
path: coverage.out
@@ -37,7 +37,7 @@ jobs:
3737
contents: write # This grants write access to the repository, including the Wiki.
3838
steps:
3939
- name: Download coverage artifact
40-
uses: actions/download-artifact@v3
40+
uses: actions/download-artifact@v4
4141
with:
4242
name: coverage.out
4343
path: ~/coverage.out

0 commit comments

Comments
 (0)