Skip to content

Commit bc68ba0

Browse files
Merge pull request #84 from scheduleonce/technocrats/ONCEHUB-91196-master
feat: [master]ONCEHUB-87436: updating transformer version to 1.86.0
2 parents 369ae50 + c0e8d23 commit bc68ba0

File tree

392 files changed

+38922
-73832
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

392 files changed

+38922
-73832
lines changed

.github/workflows/build-pr-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
tag_name_ut: ${{ steps.gen_tag_names.outputs.tag_name_ut }}
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4.1.1
25+
uses: actions/checkout@v4.2.1
2626
with:
2727
fetch-depth: 1
2828

.github/workflows/build-push-docker-image.yml

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
should_execute_tests: ${{ steps.processing.outputs.should_execute_tests }}
7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@v4.1.1
72+
uses: actions/checkout@v4.2.1
7373
with:
7474
fetch-depth: 1
7575
- id: files
@@ -97,23 +97,22 @@ jobs:
9797
needs: [get_sha, get_changed_files]
9898
steps:
9999
- name: Checkout
100-
uses: actions/checkout@v4.1.1
100+
uses: actions/checkout@v4.2.1
101101
with:
102102
ref: ${{ needs.get_sha.outputs.sha }}
103103
fetch-depth: 1
104-
105-
- name: Setup Docker Buildx
106-
uses: docker/setup-buildx-action@v3.6.1
107-
104+
108105
- name: Login to DockerHub
109106
uses: docker/login-action@v3.3.0
110107
with:
111-
registry: dockeronce.azurecr.io
112108
username: ${{ secrets.DOCKERHUB_USERNAME }}
113-
password: ${{ secrets.DOCKERHUB_TOKEN }}
109+
password: ${{ secrets.DOCKERHUB_TOKEN }}
110+
111+
- name: Setup Docker Buildx
112+
uses: docker/setup-buildx-action@v3.7.1
114113

115114
- name: Build Docker Image
116-
uses: docker/build-push-action@v6.7.0
115+
uses: docker/build-push-action@v6.9.0
117116
with:
118117
context: .
119118
file: ${{ inputs.dockerfile }}
@@ -130,7 +129,7 @@ jobs:
130129
docker run ${{ inputs.build_tag }} npm run test:ts:ci
131130
132131
- name: Build and Push Multi-platform Images
133-
uses: docker/build-push-action@v6.7.0
132+
uses: docker/build-push-action@v6.9.0
134133
with:
135134
context: .
136135
file: ${{ inputs.dockerfile }}
@@ -151,22 +150,22 @@ jobs:
151150
needs: [get_sha, get_changed_files]
152151
steps:
153152
- name: Checkout
154-
uses: actions/checkout@v4.1.1
153+
uses: actions/checkout@v4.2.1
155154
with:
156155
ref: ${{ needs.get_sha.outputs.sha }}
157156
fetch-depth: 1
158-
159-
- name: Setup Docker Buildx
160-
uses: docker/setup-buildx-action@v3.6.1
161-
157+
162158
- name: Login to DockerHub
163159
uses: docker/login-action@v3.3.0
164160
with:
165161
username: ${{ env.DOCKERHUB_USERNAME }}
166162
password: ${{ secrets.DOCKERHUB_PROD_TOKEN }}
167163

164+
- name: Setup Docker Buildx
165+
uses: docker/setup-buildx-action@v3.7.1
166+
168167
- name: Build Docker Image
169-
uses: docker/build-push-action@v6.7.0
168+
uses: docker/build-push-action@v6.9.0
170169
with:
171170
context: .
172171
file: ${{ inputs.dockerfile }}
@@ -183,7 +182,7 @@ jobs:
183182
docker run ${{ inputs.build_tag }} npm run test:ts:ci
184183
185184
- name: Build and Push Multi-platform Images
186-
uses: docker/build-push-action@v6.7.0
185+
uses: docker/build-push-action@v6.9.0
187186
with:
188187
context: .
189188
file: ${{ inputs.dockerfile }}
@@ -204,15 +203,15 @@ jobs:
204203
needs: [build-transformer-image-amd64, build-transformer-image-arm64]
205204

206205
steps:
207-
- name: Set up Docker Buildx
208-
uses: docker/setup-buildx-action@v3.6.1
209-
210206
- name: Login to DockerHub
211207
uses: docker/login-action@v3.3.0
212208
with:
213209
username: ${{ env.DOCKERHUB_USERNAME }}
214210
password: ${{ secrets.DOCKERHUB_PROD_TOKEN }}
215211

212+
- name: Set up Docker Buildx
213+
uses: docker/setup-buildx-action@v3.7.1
214+
216215
- name: Create multi-arch manifest
217216
run: |
218217
docker buildx imagetools create -t ${{ inputs.push_tags }} ${{ inputs.push_tags }}-amd64 ${{ inputs.push_tags }}-arm64

.github/workflows/commitlint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4.1.1
14+
uses: actions/checkout@v4.2.1
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4.0.3
19+
uses: actions/setup-node@v4.0.4
2020
with:
2121
node-version-file: '.nvmrc'
2222
cache: 'npm'

.github/workflows/component-test-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
aws-region: us-east-1
2828

2929
- name: Checkout
30-
uses: actions/checkout@v4.1.1
30+
uses: actions/checkout@v4.2.1
3131
with:
3232
fetch-depth: 1
3333

3434
- name: Setup Node
35-
uses: actions/setup-node@v4.0.3
35+
uses: actions/setup-node@v4.0.4
3636
with:
3737
node-version-file: '.nvmrc'
3838
cache: 'npm'

.github/workflows/draft-new-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
if: (github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/hotfix/')) && (github.actor == 'ItsSudip' || github.actor == 'krishna2020' || github.actor == 'saikumarrs' || github.actor == 'sandeepdsvs' || github.actor == 'koladilip' || github.actor == 'shrouti1507' || github.actor == 'anantjain45823' || github.actor == 'chandumlg' || github.actor == 'mihir-4116' || github.actor == 'yashasvibajpai' || github.actor == 'sanpj2292' || github.actor == 'utsabc') && (github.triggering_actor == 'ItsSudip' || github.triggering_actor == 'krishna2020' || github.triggering_actor == 'koladilip' || github.triggering_actor == 'saikumarrs' || github.triggering_actor == 'sandeepdsvs' || github.triggering_actor == 'shrouti1507' || github.triggering_actor == 'anantjain45823' || github.triggering_actor == 'chandumlg' || github.triggering_actor == 'mihir-4116' || github.triggering_actor == 'yashasvibajpai' || github.triggering_actor == 'sanpj2292' || github.triggering_actor == 'utsabc')
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4.1.1
14+
uses: actions/checkout@v4.2.1
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Setup Node
19-
uses: actions/setup-node@v4.0.3
19+
uses: actions/setup-node@v4.0.4
2020
with:
2121
node-version-file: '.nvmrc'
2222
cache: 'npm'

.github/workflows/dt-test-and-report-code-coverage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
tests_run_outcome: ${{steps.run_tests.outcome}}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4.1.1
34+
uses: actions/checkout@v4.2.1
3535
with:
36-
fetch-depth: 1
36+
fetch-depth: 0
3737

3838
- name: Setup Node
39-
uses: actions/setup-node@v4.0.3
39+
uses: actions/setup-node@v4.0.4
4040
with:
4141
node-version-file: '.nvmrc'
4242
cache: 'npm'
@@ -58,14 +58,14 @@ jobs:
5858
npm run lint:fix
5959
6060
- name: Upload Coverage Reports to Codecov
61-
uses: codecov/codecov-action@v4.0.1
61+
uses: codecov/codecov-action@v4.6.0
6262
env:
6363
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6464
with:
6565
directory: ./reports/coverage
6666

6767
- name: Upload TS Coverage Reports to Codecov
68-
uses: codecov/codecov-action@v4.0.1
68+
uses: codecov/codecov-action@v4.6.0
6969
env:
7070
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
7171
with:
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: SonarCloud Scan
8282
if: always()
83-
uses: SonarSource/sonarcloud-github-action@v3.0.0
83+
uses: SonarSource/sonarcloud-github-action@v3.1.0
8484
env:
8585
GITHUB_TOKEN: ${{ secrets.PAT }}
8686
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.github/workflows/housekeeping.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout
36-
uses: actions/checkout@v4.1.1
36+
uses: actions/checkout@v4.2.1
3737

3838
- name: Delete Old Branches
3939
uses: beatlabs/delete-old-branches-action@v0.0.10

.github/workflows/prepare-for-dev-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
tag_name_ut: ${{ steps.gen_tag_names.outputs.tag_name_ut }}
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v4.1.1
30+
uses: actions/checkout@v4.2.1
3131
with:
3232
fetch-depth: 1
3333

.github/workflows/prepare-for-prod-dt-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
tag_name_ut: ${{ steps.gen_tag_names.outputs.tag_name_ut }}
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4.1.1
35+
uses: actions/checkout@v4.2.1
3636
with:
3737
fetch-depth: 1
3838

@@ -73,7 +73,7 @@ jobs:
7373
TF_IMAGE_REPOSITORY: rudderstack/rudder-transformer
7474
steps:
7575
- name: Checkout
76-
uses: actions/checkout@v4.1.1
76+
uses: actions/checkout@v4.2.1
7777
with:
7878
fetch-depth: 1
7979

.github/workflows/prepare-for-prod-ut-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
tag_name_ut: ${{ steps.gen_tag_names.outputs.tag_name_ut }}
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4.1.1
34+
uses: actions/checkout@v4.2.1
3535
with:
3636
fetch-depth: 1
3737

@@ -76,7 +76,7 @@ jobs:
7676
TF_IMAGE_REPOSITORY: rudderstack/rudder-transformer
7777
steps:
7878
- name: Checkout
79-
uses: actions/checkout@v4.1.1
79+
uses: actions/checkout@v4.2.1
8080
with:
8181
fetch-depth: 1
8282

0 commit comments

Comments
 (0)