Skip to content

Commit 49c9549

Browse files
authored
ci: move to actions/upload-artifact@v4 (#3152)
1 parent 2a580cf commit 49c9549

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/go-test-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
run: test_analysis ${{ env.GOTESTFLAGS }}
110110
- name: Upload test results
111111
if: always()
112-
uses: actions/upload-artifact@v3
112+
uses: actions/upload-artifact@v4
113113
with:
114114
name: ${{ matrix.os }}_${{ matrix.go }}_test_results.db
115115
path: ./test_results.db
@@ -131,7 +131,7 @@ jobs:
131131
run: test_analysis -race ${{ env.GORACEFLAGS }} ./...
132132
- name: Upload test results (Race)
133133
if: (steps.race.conclusion == 'success' || steps.race.conclusion == 'failure')
134-
uses: actions/upload-artifact@v3
134+
uses: actions/upload-artifact@v4
135135
with:
136136
name: ${{ matrix.os }}_${{ matrix.go }}_test_results_race.db
137137
path: ./test_results.db

0 commit comments

Comments
 (0)