-
Notifications
You must be signed in to change notification settings - Fork 48
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
Fix version of jdk for cd.yaml #50
Conversation
@@ -50,7 +50,7 @@ jobs: | |||
uses: actions/setup-java@v2 | |||
with: | |||
distribution: 'adopt' | |||
java-version: 1.8 | |||
java-version: 8 |
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.
Does this work BTW, or do you need
java-version: '8'
to force the value to be treated as a string?
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.
looks like this worked jenkinsci/jenkins-test-harness@0f4bb0c
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.
Yes, it did. (There was a probably unrelated problem, what looks like a race condition after merging two PRs in quick succession: Release Drafter wound up including the second PR in the first release’s notes as well as the second’s.)
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.
I had that happen recently as well
@jenkinsci/github-admins