File tree Expand file tree Collapse file tree 9 files changed +14
-29
lines changed
spring-security-advanced-authentication-ui
src/main/java/software/xdev/spring/security/web/authentication/ui/advanced/filters Expand file tree Collapse file tree 9 files changed +14
-29
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 72
72
73
73
code-style :
74
74
runs-on : ubuntu-latest
75
+ if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
75
76
76
77
strategy :
77
78
matrix :
Original file line number Diff line number Diff line change @@ -161,7 +161,7 @@ jobs:
161
161
working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
162
162
163
163
- name : Deploy to Github pages
164
- uses : peaceiris/actions-gh-pages@v3
164
+ uses : peaceiris/actions-gh-pages@v4
165
165
with :
166
166
github_token : ${{ secrets.GITHUB_TOKEN }}
167
167
publish_dir : ./${{ env.PRIMARY_MAVEN_MODULE }}/target/site
Original file line number Diff line number Diff line change 27
27
sonar :
28
28
name : SonarCloud Scan
29
29
runs-on : ubuntu-latest
30
- # Dependabot PRs have no access to secrets (SONAR_TOKEN) -> Ignore them
31
- if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'dependabot/') }}
30
+ if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
32
31
steps :
33
32
- uses : actions/checkout@v4
34
33
with :
Original file line number Diff line number Diff line change 14
14
# KIND, either express or implied. See the License for the
15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
- distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.5 /apache-maven-3.9.5 -bin.zip
17
+ distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6 /apache-maven-3.9.6 -bin.zip
18
18
wrapperUrl =https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar
Original file line number Diff line number Diff line change
1
+ # 1.0.2
2
+ * Fix incorrect styling of `` main `` element on login screen
3
+
1
4
# 1.0.1
2
5
* Fix NPE when `` additionalStylingData `` is not set
3
6
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : "https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "rebaseWhen" : "behind-base-branch"
4
+ }
Original file line number Diff line number Diff line change 183
183
<plugin >
184
184
<groupId >org.apache.maven.plugins</groupId >
185
185
<artifactId >maven-source-plugin</artifactId >
186
- <version >3.3.0 </version >
186
+ <version >3.3.1 </version >
187
187
<executions >
188
188
<execution >
189
189
<id >attach-sources</id >
210
210
<plugin >
211
211
<groupId >org.apache.maven.plugins</groupId >
212
212
<artifactId >maven-gpg-plugin</artifactId >
213
- <version >3.2.2 </version >
213
+ <version >3.2.3 </version >
214
214
<executions >
215
215
<execution >
216
216
<id >sign-artifacts</id >
Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ protected String createMainElement()
268
268
.orElse ("" )
269
269
+ "' style='max-width: 21em; padding: 1rem;"
270
270
+ Optional .ofNullable (this .additionalStylingData )
271
- .map (AdditionalStylingData ::container )
271
+ .map (AdditionalStylingData ::main )
272
272
.map (StylingDefinition ::styleString )
273
273
.orElse ("" )
274
274
+ "'>" ;
You can’t perform that action at this time.
0 commit comments