From 06a4515f515ff83ddb6ed383954a7f73a6154ce5 Mon Sep 17 00:00:00 2001 From: wernerdaehn Date: Tue, 30 Mar 2021 14:18:59 +0200 Subject: [PATCH 1/3] Update pom.xml --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2c5b097..aff9557 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 io.rtdi.bigdata.connector hanaconnector - 0.9.6 + 0.9.7 war UTF-8 @@ -66,4 +66,4 @@ provided - \ No newline at end of file + From 2130a25344c54196185c70f2f1f2906164035f78 Mon Sep 17 00:00:00 2001 From: wernerdaehn Date: Tue, 30 Mar 2021 14:20:13 +0200 Subject: [PATCH 2/3] Update release.yml --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 30957b4..9ab8e1e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,15 +10,15 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@main - - uses: actions/cache@main + - uses: actions/checkout@v1 + - uses: actions/cache@v1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} restore-keys: | ${{ runner.os }}-maven- - name: Set up JDK 12 - uses: actions/setup-java@main + uses: actions/setup-java@v1 with: java-version: 12 - name: Build and test project @@ -31,7 +31,7 @@ jobs: - name: Create Release id: create_release - uses: actions/create-release@main + uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -41,7 +41,7 @@ jobs: prerelease: false - name: Upload Release Asset id: upload-release-asset - uses: actions/upload-release-asset@main + uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: From 650d626277d4f010abdcf4858992be047883019c Mon Sep 17 00:00:00 2001 From: wernerdaehn Date: Tue, 30 Mar 2021 14:20:42 +0200 Subject: [PATCH 3/3] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58f7007..2287a87 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,8 +10,8 @@ jobs: name: Test build runs-on: ubuntu-latest steps: - - uses: actions/checkout@main - - uses: actions/cache@main + - uses: actions/checkout@v1 + - uses: actions/cache@v1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}