-
Notifications
You must be signed in to change notification settings - Fork 104
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
Simplify CI-PR #567
Simplify CI-PR #567
Conversation
.github/workflows/ci-pr.yml
Outdated
@@ -135,9 +66,23 @@ jobs: | |||
- name: 'Built' | |||
shell: bash | |||
run: echo "::info ::Built" | |||
scan: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's remove this scan from the PR build as we do not accept dep. updates in PRs and Trivy is failing 99% of the time due to its rate limiting.
.github/workflows/ci-pr.yml
Outdated
java-version: '17' | ||
components: 'js' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
java-version: '17.0.12' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any particular reason so specific w/ patch version?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
setup-java@v4
requires complete version for some reason it doesn't select latest when you only specify 17
733e743
to
88f5e43
Compare
Removed checks for changed modules and ensure the build scripts works in the absence of credentials. See spring-cloud#550
c76a02b
to
aaf8f47
Compare
Removed checks for changed modules and ensure the build scripts works in the absence of credentials. See spring-cloud#550
Removed checks for changed modules and ensure the build scripts works in the absence of credentials. See spring-cloud#550
Removed checks for changed modules and ensure the build scripts works in the absence of credentials. See spring-cloud#550
Removed checks for changed modules and ensure the build scripts works in the absence of credentials. See spring-cloud#550
This changes the distribution to use liberica since it properly detects the latest patch version of the distribution.
Removed checks for changed modules and ensure the build scripts works in the absence of credentials.
See #550