Skip to content

Commit 4b7b85c

Browse files
Update CI workflows. (#87)
Signed-off-by: Yury-Fridlyand <[email protected]>
1 parent 7b2746e commit 4b7b85c

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/bi-connectors.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: Pack Tableau JDBC connector
1616
id: pack-tableau-jdbc
1717
run: |
1818
zip -r opensearch_sql_jdbc.taco . -x *.taco
1919
working-directory: bi-connectors/TableauConnector/src
2020
- name: Upload Tableau JDBC connector
2121
if: steps.pack-tableau-jdbc.outcome == 'success'
22-
uses: actions/upload-artifact@v2
22+
uses: actions/upload-artifact@v3
2323
with:
2424
name: TableauConnectors
2525
path: bi-connectors/TableauConnector/src/opensearch_sql_jdbc.taco

.github/workflows/link-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- name: lychee Link Checker
1616
id: lychee
1717
uses: lycheeverse/lychee-action@master

.github/workflows/sql-jdbc-test-and-build-workflow.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,11 @@ on:
55
push:
66
branches-ignore:
77
- 'dependabot/**'
8-
paths:
9-
- '.'
10-
- '.github/workflows/sql-jdbc-test-and-build-workflow.yml'
118

129
jobs:
1310
build:
1411
strategy:
1512
matrix:
16-
entry:
17-
- { os: ubuntu-latest }
18-
- { os: windows-latest, os_build_args: -x compileJdbc -x jacocoTestReport}
19-
- { os: macos-latest, os_build_args: -x compileJdbc -x jacocoTestReport }
2013
java:
2114
- 11
2215
- 17
@@ -39,7 +32,7 @@ jobs:
3932
cp ./build/libs/*.jar sql-jdbc-builds
4033
4134
- name: Upload Artifacts
42-
uses: actions/upload-artifact@v2
35+
uses: actions/upload-artifact@v3
4336
with:
44-
name: sql-jdbc
37+
name: sql-jdbc-java-${{ matrix.java }}
4538
path: sql-jdbc-builds

0 commit comments

Comments
 (0)