Skip to content

Commit

Permalink
Update plugin-bom.version to v3435 (major) (#2568)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Oct 7, 2024
1 parent d09b5fd commit c5f43ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class CredentialsTest {

@ConfiguredWithCode("GlobalCredentials.yml")
@Test
public void testGlobalScopedCredentials() {
public void testGlobalScopedCredentials() throws Exception {
List<StandardUsernamePasswordCredentials> creds = CredentialsProvider.lookupCredentials(
StandardUsernamePasswordCredentials.class, Jenkins.getInstanceOrNull(), null, Collections.emptyList());
assertThat(creds.size(), is(1));
Expand All @@ -60,7 +60,7 @@ public void testGlobalScopedCredentials() {

@ConfiguredWithCode("CredentialsWithDomain.yml")
@Test
public void testDomainScopedCredentials() {
public void testDomainScopedCredentials() throws Exception {
List<StandardUsernamePasswordCredentials> creds = CredentialsProvider.lookupCredentials(
StandardUsernamePasswordCredentials.class, Jenkins.getInstanceOrNull(), null, Collections.emptyList());
assertThat(creds.size(), is(1));
Expand Down Expand Up @@ -149,7 +149,7 @@ public void testExportSSHCredentials() throws Exception {

@Test
@Issue("SECURITY-1404")
public void checkUsernamePasswordIsSecret() {
public void checkUsernamePasswordIsSecret() throws Exception {
Attribute a = getFromDatabound(UsernamePasswordCredentialsImpl.class, "password");
assertTrue(
"Attribute 'password' should be secret",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<jenkins.version>2.440.3</jenkins.version>
<tagNameFormat>configuration-as-code-@{project.version}</tagNameFormat>
<useBeta>true</useBeta>
<plugin-bom.version>3387.v0f2773fa_3200</plugin-bom.version>
<plugin-bom.version>3435.v238d66a_043fb_</plugin-bom.version>
<spotless.check.skip>false</spotless.check.skip>
</properties>

Expand Down

0 comments on commit c5f43ed

Please sign in to comment.