Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CVE-2020-36604 CVE-2019-10790 CVE-2022-0144 CVE-2018-3728 CVE-2024-29025 CVE-2023-26136 CVE-2020-15366 update vulnerable libraries #770

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,12 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: OpenAM Dockerfile
path: openam-distribution/openam-distribution-docker/Dockerfile*
path: openam-distribution/openam-distribution-docker/Dockerfile*
- name: Configure Git User
run: |
git config --global user.name "Open Identity Platform Community"
git config --global user.email "open-identity-platform-opendj@googlegroups.com"
cd ..
- uses: actions/checkout@v4
continue-on-error: true
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ public void updated_created_fields_test() throws SSOException, IdRepoException{
long created = Long.parseLong(fieldsValues.get("_created").stream().findFirst().get());
long updated = Long.parseLong(fieldsValues.get("_updated").stream().findFirst().get());
assertTrue(created < updated);
assertEquals(create, created / 1000);
assertEquals(create, updated / 1000);
assertTrue(((created / 1000) - create) <= 1);
assertTrue(((updated / 1000) - create) <= 1);

System.out.println(repo.getAttributes(null, IdType.USER, "9170000000",fields));
}
Expand Down
Loading