@@ -22,16 +22,16 @@ jobs:
2222 runs-on : ${{ matrix.os }}-latest
2323 steps :
2424 - name : Checkout code
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626 - name : Install Go
27- uses : actions/setup-go@v3
27+ uses : actions/setup-go@v5
2828 with :
2929 go-version : ${{ matrix.go-version }}
3030 cache : true
3131 - name : Test
3232 run : go test -race -coverprofile unit.txt -covermode atomic ./...
3333 - name : Upload coverage report to Codecov
34- uses : codecov/codecov-action@v3
34+ uses : codecov/codecov-action@v4
3535 with :
3636 file : ./unit.txt
3737 flags : unit,${{ matrix.os }},go-${{ matrix.go-version }}
@@ -71,16 +71,16 @@ jobs:
7171 HIDE_APPLICATION_OUTPUT : 1
7272 steps :
7373 - name : Checkout code
74- uses : actions/checkout@v3
74+ uses : actions/checkout@v4
7575 - name : Install Go
76- uses : actions/setup-go@v3
76+ uses : actions/setup-go@v5
7777 with :
7878 go-version : ${{ matrix.go-version }}
7979 cache : true
8080 - name : Integration test
8181 run : go test -race -tags integration -coverpkg=./... -coverprofile integration-secure.txt -covermode atomic ./tests/integration
8282 - name : Upload Test secure connection coverage report to Codecov
83- uses : codecov/codecov-action@v3
83+ uses : codecov/codecov-action@v4
8484 with :
8585 file : ./integration-secure.txt
8686 flags : integration,${{ matrix.os }},go-${{ matrix.go-version }},ydb-${{ matrix.ydb-version }}
0 commit comments