Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6d0366f

Browse files
committedJun 25, 2024··
chore
1 parent fdf6604 commit 6d0366f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed
 

‎.github/workflows/test.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,15 @@ jobs:
7171
with:
7272
name: "${{ github.sha }}-00"
7373
path: ./pkgs.txt.part.00
74-
- uses: actions/upload-artifact@v3
74+
- uses: actions/upload-artifact@v4
7575
with:
7676
name: "${{ github.sha }}-01"
7777
path: ./pkgs.txt.part.01
78-
- uses: actions/upload-artifact@v3
78+
- uses: actions/upload-artifact@v4
7979
with:
8080
name: "${{ github.sha }}-02"
8181
path: ./pkgs.txt.part.02
82-
- uses: actions/upload-artifact@v3
82+
- uses: actions/upload-artifact@v4
8383
with:
8484
name: "${{ github.sha }}-03"
8585
path: ./pkgs.txt.part.03
@@ -110,7 +110,7 @@ jobs:
110110
run: |
111111
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -race -mod=readonly -timeout 30m -coverprofile=${{ matrix.part }}profile.out -covermode=atomic -tags='ledger test_ledger_mock'
112112
if: env.GIT_DIFF
113-
- uses: actions/upload-artifact@v3
113+
- uses: actions/upload-artifact@v4
114114
with:
115115
name: "${{ github.sha }}-${{ matrix.part }}-coverage"
116116
path: ./${{ matrix.part }}profile.out
@@ -130,15 +130,15 @@ jobs:
130130
with:
131131
name: "${{ github.sha }}-00-coverage"
132132
if: env.GIT_DIFF
133-
- uses: actions/download-artifact@v3
133+
- uses: actions/download-artifact@v4
134134
with:
135135
name: "${{ github.sha }}-01-coverage"
136136
if: env.GIT_DIFF
137-
- uses: actions/download-artifact@v3
137+
- uses: actions/download-artifact@v4
138138
with:
139139
name: "${{ github.sha }}-02-coverage"
140140
if: env.GIT_DIFF
141-
- uses: actions/download-artifact@v3
141+
- uses: actions/download-artifact@v4
142142
with:
143143
name: "${{ github.sha }}-03-coverage"
144144
if: env.GIT_DIFF

0 commit comments

Comments
 (0)
Please sign in to comment.