Skip to content

Commit

Permalink
Fixing gh workflow warning and failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
josemduarte committed Dec 4, 2023
1 parent 457b6d8 commit 6d23660
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master.yml
Expand Up @@ -24,7 +24,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
- name: Build, test (no integration) and Sonarqube analyse
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
- name: Build, test and integration test
Expand Down
Expand Up @@ -199,7 +199,7 @@ class CreateValidationFiles{

@Test
void testValidationFiles() throws IOException{
URL sourceUrl = new URL("https://ftp.wwpdb.org/pub/pdb/data/structures/divided/mmCIF/45/145d.cif.gz");
URL sourceUrl = new URL("https://files.wwpdb.org/pub/pdb/data/structures/divided/mmCIF/45/145d.cif.gz");
File destFile = new File(System.getProperty("java.io.tmpdir"), "145d.cif.gz");
File sizeFile = new File(destFile.getParentFile(), destFile.getName()+".size");
File hashFile = new File(destFile.getParentFile(), destFile.getName()+".hash_MD5");
Expand Down

0 comments on commit 6d23660

Please sign in to comment.