Skip to content

Commit 0bf02cf

Browse files
author
Marius Posta
authored
bulk-cdk: re-export boms, clean up github workflow (#43371)
1 parent 6514412 commit 0bf02cf

File tree

2 files changed

+10
-21
lines changed

2 files changed

+10
-21
lines changed

.github/workflows/publish-bulk-cdk.yml

-11
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,6 @@ on:
99
- "airbyte-cdk/bulk"
1010
workflow_dispatch:
1111
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
1912
build-number:
2013
description: "Build Number"
2114
required: false
@@ -26,8 +19,6 @@ concurrency:
2619
cancel-in-progress: false
2720

2821
env:
29-
# Use the provided GITREF or default to the branch triggering the workflow.
30-
GITREF: ${{ github.event.inputs.gitref || github.ref }}
3122
S3_BUILD_CACHE_ACCESS_KEY_ID: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
3223
S3_BUILD_CACHE_SECRET_KEY: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
3324

@@ -39,8 +30,6 @@ jobs:
3930
steps:
4031
- name: Checkout Airbyte
4132
uses: actions/checkout@v3
42-
with:
43-
ref: ${{ env.GITREF }}
4433

4534
- name: Setup Java
4635
uses: actions/setup-java@v3

airbyte-cdk/bulk/build.gradle

+10-10
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ allprojects {
1212
}
1313

1414
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')
2323

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'
2626
ksp 'com.google.dagger:dagger-compiler:2.51.1'
2727

2828
annotationProcessor platform('io.micronaut:micronaut-core-bom:4.3.13')

0 commit comments

Comments
 (0)