Skip to content

Commit b607e30

Browse files
authored
Merge pull request #1970 from OWASP/renovate/bootstrap.version
fix(deps): update dependency org.webjars:bootstrap to v5.3.5
2 parents 47f8d9a + 33517b7 commit b607e30

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/scripts/docker-create.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ test() {
448448
log_failure "The container test has failed, this means that when we built your changes and ran a basic sanity test on the homepage it failed. Please build the container locally and double check the container is running correctly."
449449
fi
450450
echo "testing curl for webjar caching"
451-
curl -I 'http://localhost:8080/webjars/bootstrap/5.3.3/css/bootstrap.min.css'
451+
curl -I 'http://localhost:8080/webjars/bootstrap/5.3.5/css/bootstrap.min.css'
452452
echo "testing with cypress (requires node20)"
453453
cd ../../src/test/e2e
454454
npx cypress run

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<asciidoctor.maven.plugin.version>3.2.0</asciidoctor.maven.plugin.version>
4848
<asciidoctorj.version>3.0.0</asciidoctorj.version>
4949
<aws.sdk.version>2.31.13</aws.sdk.version>
50-
<bootstrap.version>5.3.3</bootstrap.version>
50+
<bootstrap.version>5.3.5</bootstrap.version>
5151
<com.azure.spring.version>5.22.0</com.azure.spring.version>
5252
<cyclonedx.core.version>10.2.1</cyclonedx.core.version>
5353
<datatables.version>2.1.8</datatables.version>

src/main/resources/templates/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>OWASP WrongSecrets</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
88
<link th:rel="stylesheet" th:href="@{/webjars/datatables/2.1.8/css/dataTables.bootstrap5.min.css} " />
9-
<link th:rel="stylesheet" th:href="@{/webjars/bootstrap/5.3.3/css/bootstrap.min.css} " />
9+
<link th:rel="stylesheet" th:href="@{/webjars/bootstrap/5.3.5/css/bootstrap.min.css} " />
1010
<link rel="stylesheet" type="text/css" th:href="@{/css/style.css}" />
1111
<link rel="stylesheet" type="text/css" th:href="@{/css/dark.css}" />
1212

@@ -18,7 +18,7 @@
1818
<th:block layout:fragment="content"></th:block>
1919
</div>
2020

21-
<script th:src="@{/webjars/bootstrap/5.3.3/js/bootstrap.bundle.min.js}"></script>
21+
<script th:src="@{/webjars/bootstrap/5.3.5/js/bootstrap.bundle.min.js}"></script>
2222
<script th:src="@{/webjars/github-buttons/2.14.1/dist/buttons.min.js}"></script>
2323
<script th:src="@{/webjars/jquery/3.7.1/jquery.min.js}"></script>
2424
<script th:src="@{/webjars/datatables/2.1.8/js/dataTables.min.js}"></script>

0 commit comments

Comments
 (0)