Skip to content

Commit

Permalink
Fix for audit column and ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Jul 25, 2024
1 parent dd2d480 commit d1e318f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-api-build.and.test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
quality_profile:

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to.openshift-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
build-and-deploy-dev:
name: Build and deploy to OpenShift DEV
# ubuntu-20.04 can also be used.
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: dev

outputs:
Expand Down Expand Up @@ -167,4 +167,4 @@ jobs:
- name: ZAP Scan
uses: zaproxy/action-api-scan@v0.2.0
with:
target: 'https://${{ env.APP_NAME }}-${{ env.OPENSHIFT_NAMESPACE_DEV }}.apps.silver.devops.gov.bc.ca/v3/api-docs'
target: 'https://${{ env.APP_NAME }}-${{ env.OPENSHIFT_NAMESPACE_DEV }}.apps.silver.devops.gov.bc.ca/v3/api-docs'
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to.openshift-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
openshift-ci-cd:
name: Deploy to OpenShift PROD
# ubuntu-20.04 can also be used.
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: production

outputs:
Expand Down Expand Up @@ -128,4 +128,4 @@ jobs:
|| true && echo "Rollout in progress"
oc logs -f dc/${{ env.SPRING_BOOT_IMAGE_NAME }}
# Get status, returns 0 if rollout is successful
oc rollout status dc/${{ env.SPRING_BOOT_IMAGE_NAME }}
oc rollout status dc/${{ env.SPRING_BOOT_IMAGE_NAME }}
4 changes: 2 additions & 2 deletions .github/workflows/deploy-to.openshift-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:

deploy-test:
name: Deploy to OpenShift TEST
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: test

outputs:
Expand Down Expand Up @@ -135,4 +135,4 @@ jobs:
- name: ZAP Scan
uses: zaproxy/action-api-scan@v0.2.0
with:
target: 'https://${{ env.APP_NAME }}-${{ env.OPENSHIFT_NAMESPACE_TEST }}.apps.silver.devops.gov.bc.ca/v3/api-docs'
target: 'https://${{ env.APP_NAME }}-${{ env.OPENSHIFT_NAMESPACE_TEST }}.apps.silver.devops.gov.bc.ca/v3/api-docs'
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ public class Student implements Serializable {
/**
* The Create user.
*/
@Size(max = 32)
@Size(max = 100)
String createUser;
/**
* The Update user.
*/
@Size(max = 32)
@Size(max = 100)
String updateUser;
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public class StudentMerge implements Serializable {
/**
* The Create user.
*/
@Size(max = 32)
@Size(max = 100)
String createUser;
/**
* The Update user.
*/
@Size(max = 32)
@Size(max = 100)
String updateUser;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
ALTER TABLE SLD_NOTIFICATION_EVENT
MODIFY (
CREATE_USER VARCHAR2(100),
UPDATE_USER VARCHAR2(100)
);

0 comments on commit d1e318f

Please sign in to comment.