Skip to content

Commit f9faef3

Browse files
committed
feat(59649): replace the Docker credentials and remove the ci-cd-python.yml as it is not needed
1 parent 545aafc commit f9faef3

4 files changed

Lines changed: 6 additions & 137 deletions

File tree

.github/workflows/ci-cd-java.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ permissions:
66

77
on:
88
workflow_call:
9-
secrets:
10-
DOCKER_USERNAME:
11-
required: true
12-
DOCKER_PASSWORD:
13-
required: true
14-
CODECOV_TOKEN:
15-
required: true
169
inputs:
1710
# it is required for backwards compatibility with CI/CD pipelines that have not been yet fully migrated to shared workflows
1811
uploadJarArtifact:
@@ -186,8 +179,8 @@ jobs:
186179
if: ${{ env.PERFORM_RELEASE == 'true' }}
187180
uses: docker/login-action@v3
188181
with:
189-
username: ${{ secrets.DOCKER_USERNAME }}
190-
password: ${{ secrets.DOCKER_PASSWORD }}
182+
username: ${{ secrets.DOCKER_HUB_INFODEVOPS_USERNAME }}
183+
password: ${{ secrets.DOCKER_HUB_INFODEVOPS_TOKEN }}
191184

192185
- name: Build & Push Docker image
193186
if: ${{ env.PERFORM_RELEASE == 'true' }}

.github/workflows/ci-cd-kotlin.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ permissions:
66

77
on:
88
workflow_call:
9-
secrets:
10-
DOCKER_USERNAME:
11-
required: true
12-
DOCKER_PASSWORD:
13-
required: true
14-
CODECOV_TOKEN:
15-
required: true
169
inputs:
1710
uploadJarArtifact:
1811
required: false
@@ -137,8 +130,8 @@ jobs:
137130
if: env.PERFORM_RELEASE == 'true'
138131
uses: docker/login-action@v3
139132
with:
140-
username: ${{ secrets.DOCKER_USERNAME }}
141-
password: ${{ secrets.DOCKER_PASSWORD }}
133+
username: ${{ secrets.DOCKER_HUB_INFODEVOPS_USERNAME }}
134+
password: ${{ secrets.DOCKER_HUB_INFODEVOPS_TOKEN }}
142135

143136
- name: Build & Push Docker image
144137
if: env.PERFORM_RELEASE == 'true'

.github/workflows/ci-cd-python.yml

Lines changed: 0 additions & 110 deletions
This file was deleted.

.github/workflows/ci-cd-typescript.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
name: ci-cd-typescript.yml
22
on:
33
workflow_call:
4-
secrets:
5-
DOCKER_USERNAME:
6-
required: true
7-
DOCKER_PASSWORD:
8-
required: true
9-
CODECOV_TOKEN:
10-
required: true
114
inputs:
125
checkAndTestOutsideDocker:
136
required: false
@@ -121,8 +114,8 @@ jobs:
121114
if: env.PERFORM_RELEASE == 'true'
122115
uses: docker/login-action@v3
123116
with:
124-
username: ${{ secrets.DOCKER_USERNAME }}
125-
password: ${{ secrets.DOCKER_PASSWORD }}
117+
username: ${{ secrets.DOCKER_HUB_INFODEVOPS_USERNAME }}
118+
password: ${{ secrets.DOCKER_HUB_INFODEVOPS_TOKEN }}
126119

127120
- name: Build and push
128121
if: env.PERFORM_RELEASE == 'true'

0 commit comments

Comments
 (0)