Skip to content

Commit 2841b76

Browse files
clean up git config issues
1 parent 9bf1d8b commit 2841b76

File tree

6 files changed

+12
-1
lines changed

6 files changed

+12
-1
lines changed

.github/workflows/build-and-test-core.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v4
11+
- name: Clean up stale submodule config
12+
run: git config --file .git/config --remove-section submodule.build/common-domain-model || true
1113
- name: Set up JDK 21
1214
uses: actions/setup-java@v4
1315
with:

.github/workflows/cve-scanning.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
20+
- name: Clean up stale submodule config
21+
run: git config --file .git/config --remove-section submodule.build/common-domain-model || true
2022
- name: Setup JDK 21
2123
uses: actions/setup-java@v4
2224
with:

.github/workflows/license-scanning-maven.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ jobs:
5252
runs-on: ubuntu-latest
5353
steps:
5454
- uses: actions/checkout@v4
55+
- name: Clean up stale submodule config
56+
run: git config --file .git/config --remove-section submodule.build/common-domain-model || true
5557
- name: Set up JDK 21
5658
uses: actions/setup-java@v4
5759
with:

.github/workflows/release-core.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
17+
- name: Clean up stale submodule config
18+
run: git config --file .git/config --remove-section submodule.build/common-domain-model || true
1719

1820
- name: Set up JDK
1921
uses: actions/setup-java@v4

.github/workflows/release-on-dsl-version-change.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
with:
2020
fetch-depth: 0 # Fetch all tags
2121

22+
- name: Clean up stale submodule config
23+
run: git config --file .git/config --remove-section submodule.build/common-domain-model || true
24+
2225
- name: Set up JDK
2326
uses: actions/setup-java@v4
2427
with:

src/test/java/com/regnosys/rosetta/generator/python/PythonGeneratorTestUtils.xtend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class PythonGeneratorTestUtils {
7070
LOGGER.error("Failed to delete folder content: " + e.message)
7171
}
7272
} else {
73-
LOGGER.error(folderPath + " does not exist or is not a directory")
73+
LOGGER.info(folderPath + " does not exist or is not a directory")
7474
}
7575
}
7676

0 commit comments

Comments
 (0)