diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 8e192a7..8a17b07 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -23,10 +23,10 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Set up JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
@@ -43,7 +43,7 @@ jobs:
- name: Checkout YDB Java SDK
if: env.NEED_SDK == 'true'
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-sdk
ref: develop
@@ -60,7 +60,7 @@ jobs:
- name: Checkout YC Auth provider
if: env.NEED_SDK == 'true'
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-yc
ref: develop
@@ -82,6 +82,7 @@ jobs:
run: mvn $MAVEN_ARGS package
coverage:
+ if: github.repository == 'ydb-platform/ydb-jdbc-driver'
name: Coverage JDBC Driver
runs-on: ubuntu-latest
needs: build
@@ -91,10 +92,10 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Set up JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'temurin'
@@ -111,7 +112,7 @@ jobs:
- name: Checkout YDB Java SDK
if: env.NEED_SDK == 'true'
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-sdk
ref: develop
@@ -128,7 +129,7 @@ jobs:
- name: Checkout YC Auth provider
if: env.NEED_SDK == 'true'
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
repository: ydb-platform/ydb-java-yc
ref: develop
@@ -150,4 +151,4 @@ jobs:
run: mvn $MAVEN_ARGS test
- name: Upload coverage to Codecov
- uses: codecov/codecov-action@v3
+ uses: codecov/codecov-action@v4
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml
index fea5526..3b551f4 100644
--- a/.github/workflows/publish.yaml
+++ b/.github/workflows/publish.yaml
@@ -12,7 +12,7 @@ jobs:
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: true
@@ -38,7 +38,7 @@ jobs:
script: core.setFailed('Release name must be equal to project version')
- name: Set up JDK
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'temurin'
@@ -67,12 +67,12 @@ jobs:
gpg --list-secret-keys --keyid-format LONG
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: true
- name: Set up Maven Central Repository
- uses: actions/setup-java@v3
+ uses: actions/setup-java@v4
with:
java-version: 8
distribution: 'temurin'
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3306149..5e55c50 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 2.0.7 ##
+
+* Added getter for GrpcTransport to YdbContext
+
## 2.0.6 ##
* Upgraded Java SDK version
diff --git a/README.md b/README.md
index 6e927d7..0970277 100644
--- a/README.md
+++ b/README.md
@@ -25,14 +25,14 @@ Specify the YDB JDBC driver in the dependencies:
tech.ydb.jdbc
ydb-jdbc-driver
- 2.0.6
+ 2.0.7
tech.ydb.jdbc
ydb-jdbc-driver-shaded
- 2.0.6
+ 2.0.7
```