diff --git a/.github/workflows/test-integration.yml b/.github/workflows/test-integration.yml index 7196ae3ae..2460c1c8d 100644 --- a/.github/workflows/test-integration.yml +++ b/.github/workflows/test-integration.yml @@ -27,7 +27,7 @@ jobs: if curl -s localhost:9200; \ then echo '=====> ready'; break; fi; if [ $attempt == 25 ]; then exit 1; fi; echo '=====> waiting...'; done - run: make test-integ race=true coverage=true - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: file: tmp/integ.cov flags: integration diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index b5717ed2f..38f21eeff 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -22,7 +22,7 @@ jobs: if: matrix.os != 'ubuntu-latest' - run: make test-unit race=true coverage=true if: matrix.os == 'ubuntu-latest' - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 with: file: tmp/unit.cov flags: unit diff --git a/CHANGELOG.md b/CHANGELOG.md index bab5e8eb2..7786df4e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Change ParseError function to do type assertion to determine error type ([#512](https://github.com/opensearch-project/opensearch-go/pull/506)) - Removed unused structs and functions from opensearch ([#517](https://github.com/opensearch-project/opensearch-go/pull/517)) - Adjust and extent opensearch tests for better coverage ([#517](https://github.com/opensearch-project/opensearch-go/pull/517)) +- Bump codecov action version to v4 ([#517](https://github.com/opensearch-project/opensearch-go/pull/517)) ### Deprecated