File tree 2 files changed +10
-21
lines changed
2 files changed +10
-21
lines changed Original file line number Diff line number Diff line change 9
9
- " airbyte-cdk/bulk"
10
10
workflow_dispatch :
11
11
inputs :
12
- repo :
13
- description : " Repo to check out code from. Defaults to the main airbyte repo."
14
- type : choice
15
- required : true
16
- default : airbytehq/airbyte
17
- options :
18
- - airbytehq/airbyte
19
12
build-number :
20
13
description : " Build Number"
21
14
required : false
@@ -26,8 +19,6 @@ concurrency:
26
19
cancel-in-progress : false
27
20
28
21
env :
29
- # Use the provided GITREF or default to the branch triggering the workflow.
30
- GITREF : ${{ github.event.inputs.gitref || github.ref }}
31
22
S3_BUILD_CACHE_ACCESS_KEY_ID : ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
32
23
S3_BUILD_CACHE_SECRET_KEY : ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
33
24
39
30
steps :
40
31
- name : Checkout Airbyte
41
32
uses : actions/checkout@v3
42
- with :
43
- ref : ${{ env.GITREF }}
44
33
45
34
- name : Setup Java
46
35
uses : actions/setup-java@v3
Original file line number Diff line number Diff line change @@ -12,17 +12,17 @@ allprojects {
12
12
}
13
13
14
14
dependencies {
15
- implementation platform(' org.jetbrains.kotlin:kotlin-bom:2.0.0' )
16
- implementation platform(' org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1' )
17
- implementation platform(' com.fasterxml.jackson:jackson-bom:2.16.1' )
18
- implementation platform(' io.micronaut:micronaut-core-bom:4.3.13' )
19
- implementation platform(' org.junit:junit-bom:5.10.2' )
20
- implementation platform(' org.slf4j:slf4j-bom:2.0.13' )
21
- implementation platform(' org.apache.logging.log4j:log4j-bom:2.21.1' )
22
- implementation platform(' org.testcontainers:testcontainers-bom:1.19.8' )
15
+ api platform(' org.jetbrains.kotlin:kotlin-bom:2.0.0' )
16
+ api platform(' org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.8.1' )
17
+ api platform(' com.fasterxml.jackson:jackson-bom:2.16.1' )
18
+ api platform(' io.micronaut:micronaut-core-bom:4.3.13' )
19
+ api platform(' org.junit:junit-bom:5.10.2' )
20
+ api platform(' org.slf4j:slf4j-bom:2.0.13' )
21
+ api platform(' org.apache.logging.log4j:log4j-bom:2.21.1' )
22
+ api platform(' org.testcontainers:testcontainers-bom:1.19.8' )
23
23
24
- implementation ' org.jetbrains.kotlin:kotlin-stdlib'
25
- implementation ' com.google.dagger:dagger-compiler:2.51.1'
24
+ api ' org.jetbrains.kotlin:kotlin-stdlib'
25
+ api ' com.google.dagger:dagger-compiler:2.51.1'
26
26
ksp ' com.google.dagger:dagger-compiler:2.51.1'
27
27
28
28
annotationProcessor platform(' io.micronaut:micronaut-core-bom:4.3.13' )
You can’t perform that action at this time.
0 commit comments