diff --git a/.github/workflows/client-compatibility.yml b/.github/workflows/client-compatibility.yml
index 2a9906f..bd02918 100644
--- a/.github/workflows/client-compatibility.yml
+++ b/.github/workflows/client-compatibility.yml
@@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- driver-version: [ 4.10.0, 4.11.0, 4.11.1, 4.11.2, 4.11.3, 4.12.0, 4.12.1, 4.13.0, 4.14.0, 4.15.0, 4.16.0, 4.17.0 ]
+ driver_version: [ 4.10.0, 4.11.0, 4.11.1, 4.11.2, 4.11.3, 4.12.0, 4.12.1, 4.13.0, 4.14.0, 4.15.0, 4.16.0, 4.17.0 ]
steps:
- name: Checkout
@@ -33,6 +33,6 @@ jobs:
- name: Run client app
run: |
cd $GITHUB_WORKSPACE/client
- sed -i -E 's|\(\)[^<]*\(\)|\14.16.0\2|' pom.xml
+ sed -i -E "s|\(\)[^<]*\(\)|\1${{ matrix.driver_version }}\2|" pom.xml
mvn compile exec:java -Dexec.mainClass="org.example.Main"