Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: jdk 17 #473

Merged
merged 3 commits into from Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 15]
java: [8, 11, 17]
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -92,7 +92,7 @@ subprojects {
}

spotbugs {
toolVersion = '4.2.0'
toolVersion = '4.7.3'
excludeFilter = rootProject.file('codequality/findbugs-exclude.xml')
ignoreFailures = false
spotbugsMain.enabled = true
Expand Down
33 changes: 3 additions & 30 deletions codequality/findbugs-exclude.xml
Expand Up @@ -7,40 +7,13 @@
</And>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.sandbox.HttpResponse"/>
<Bug pattern="EI_EXPOSE_REP"/>
</And>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.sandbox.HttpResponse"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</And>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.sandbox.HttpRequestBuilder"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</And>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.ipc.http.HttpResponse"/>
<Bug pattern="EI_EXPOSE_REP"/>
</And>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.ipc.http.HttpResponse"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</And>
</Match>
<Match>
<And>
<Class name="com.netflix.spectator.ipc.http.HttpRequestBuilder"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</And>
<Bug pattern="MS_EXPOSE_REP"/>
</Match>
<Match>
<And>
Expand Down