Skip to content

Commit 9305fda

Browse files
authored
Merge branch 'develop' into feature/ohid-504_stop_isl_lower_3
2 parents c78342f + 006619a commit 9305fda

6 files changed

Lines changed: 54 additions & 24 deletions

File tree

.github/workflows/build-demo.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
prime-docman-
3131
3232
- name: "Login to OpenShift repository"
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
34+
env:
35+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
3436
with:
3537
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
3638
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -69,7 +71,9 @@ jobs:
6971
prime-backend-
7072
7173
- name: "Login to OpenShift repository"
72-
uses: docker/login-action@v2
74+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
75+
env:
76+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
7377
with:
7478
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
7579
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -123,7 +127,9 @@ jobs:
123127
prime-frontend-
124128
125129
- name: "Login to OpenShift repository"
126-
uses: docker/login-action@v2
130+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
131+
env:
132+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
127133
with:
128134
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
129135
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}

.github/workflows/build-develop.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ jobs:
3131
prime-docman-
3232
3333
- name: "Login to OpenShift repository"
34-
uses: docker/login-action@v2
34+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
35+
env:
36+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
3537
with:
3638
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
3739
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
38-
password: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_PASSWORD}}
40+
password: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_PASSWORD}}
3941

4042
- name: "Build Document Manager image"
4143
run: |
@@ -69,11 +71,13 @@ jobs:
6971
prime-backend-
7072
7173
- name: "Login to OpenShift repository"
72-
uses: docker/login-action@v2
74+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
75+
env:
76+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
7377
with:
7478
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
7579
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
76-
password: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_PASSWORD}}
80+
password: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_PASSWORD}}
7781

7882
- name: "Build .NET web API image"
7983
run: |
@@ -125,7 +129,9 @@ jobs:
125129
prime-frontend-
126130
127131
- name: "Login to OpenShift repository"
128-
uses: docker/login-action@v2
132+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
133+
env:
134+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
129135
with:
130136
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
131137
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}

.github/workflows/build-main.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
prime-docman-
3131
3232
- name: "Login to OpenShift repository"
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
34+
env:
35+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
3436
with:
3537
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
3638
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -69,7 +71,9 @@ jobs:
6971
prime-backend-
7072
7173
- name: "Login to OpenShift repository"
72-
uses: docker/login-action@v2
74+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
75+
env:
76+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
7377
with:
7478
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
7579
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -123,7 +127,9 @@ jobs:
123127
prime-frontend-
124128
125129
- name: "Login to OpenShift repository"
126-
uses: docker/login-action@v2
130+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
131+
env:
132+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
127133
with:
128134
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
129135
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}

.github/workflows/build-pr.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@ on:
1212
pull_request:
1313
paths-ignore:
1414
- prime-database-backup/**
15-
branches-ignore:
16-
- 'develop'
17-
- 'test'
18-
- 'master'
1915

2016
jobs:
2117
build-document-manager-backend:
18+
name: build-document-manager-backend
2219
runs-on: ubuntu-24.04
2320
environment: Development
2421
steps:
@@ -37,7 +34,9 @@ jobs:
3734
prime-docman-
3835
3936
- name: "Login to OpenShift repository"
40-
uses: docker/login-action@v2
37+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
38+
env:
39+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
4140
with:
4241
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
4342
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -64,6 +63,7 @@ jobs:
6463
docker push ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}/${{secrets.OPENSHIFT_LICENSE_PLATE}}-tools/prime-document-manager:pr-${{steps.PR.outputs.number}}
6564
6665
build-backend:
66+
name: build-backend
6767
runs-on: ubuntu-24.04
6868
environment: Development
6969
steps:
@@ -82,7 +82,9 @@ jobs:
8282
prime-backend-
8383
8484
- name: "Login to OpenShift repository"
85-
uses: docker/login-action@v2
85+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
86+
env:
87+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
8688
with:
8789
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
8890
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -118,6 +120,7 @@ jobs:
118120
docker push ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}/${{secrets.OPENSHIFT_LICENSE_PLATE}}-tools/prime-webapi-backend:pr-${{steps.PR.outputs.number}}
119121
120122
build-frontend:
123+
name: build-frontend
121124
runs-on: ubuntu-latest
122125
environment: Development
123126
defaults:
@@ -145,7 +148,9 @@ jobs:
145148
prime-frontend-
146149
147150
- name: "Login to OpenShift repository"
148-
uses: docker/login-action@v2
151+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
152+
env:
153+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
149154
with:
150155
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
151156
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -189,6 +194,7 @@ jobs:
189194
docker push ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}/${{secrets.OPENSHIFT_LICENSE_PLATE}}-tools/prime-frontend:pr-${{steps.PR.outputs.number}}
190195
191196
apply-oc-template:
197+
name: apply-oc-template
192198
runs-on: ubuntu-24.04
193199
environment: Development
194200
needs: [build-document-manager-backend, build-frontend, build-backend]

.github/workflows/build-test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
prime-docman-
3131
3232
- name: "Login to OpenShift repository"
33-
uses: docker/login-action@v2
33+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
34+
env:
35+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
3436
with:
3537
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
3638
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -69,7 +71,9 @@ jobs:
6971
prime-backend-
7072
7173
- name: "Login to OpenShift repository"
72-
uses: docker/login-action@v2
74+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
75+
env:
76+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
7377
with:
7478
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
7579
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -123,7 +127,9 @@ jobs:
123127
prime-frontend-
124128
125129
- name: "Login to OpenShift repository"
126-
uses: docker/login-action@v2
130+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
131+
env:
132+
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: 'true'
127133
with:
128134
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
129135
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}

.github/workflows/build-tools.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/checkout@v2
2323

2424
- name: "Login to OpenShift repository"
25-
uses: docker/login-action@v1
25+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
2626
with:
2727
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
2828
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -53,7 +53,7 @@ jobs:
5353
uses: actions/checkout@v2
5454

5555
- name: "Login to OpenShift repository"
56-
uses: docker/login-action@v1
56+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
5757
with:
5858
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
5959
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions/checkout@v2
100100

101101
- name: "Login to OpenShift repository"
102-
uses: docker/login-action@v1
102+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee
103103
with:
104104
registry: ${{secrets.OPENSHIFT_IMAGE_REPOSITORY}}
105105
username: ${{secrets.OPENSHIFT_TOOLS_SERVICE_ACCOUNT_USERNAME}}

0 commit comments

Comments
 (0)