Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 CVE-2023-26136 CVE-2020-15366 update vulnerable libraries  (#770)
  • Loading branch information
maximthomas authored Jun 26, 2024
1 parent 2a87a79 commit 9a81045
Show file tree
Hide file tree
Showing 5 changed files with 1,131 additions and 871 deletions.
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 "[email protected]"
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

0 comments on commit 9a81045

Please sign in to comment.